ibf-dsp561.c 426 B

1234567891011121314151617181920212223242526
  1. /*
  2. * U-Boot - main board file
  3. *
  4. * Copyright (c) 2008-2009 I-SYST.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #include <common.h>
  9. #include <netdev.h>
  10. DECLARE_GLOBAL_DATA_PTR;
  11. int checkboard(void)
  12. {
  13. printf("Board: I-SYST IBF-DSP561 Micromodule\n");
  14. printf(" Support: http://www.i-syst.com/\n");
  15. return 0;
  16. }
  17. #ifdef CONFIG_DRIVER_AX88180
  18. int board_eth_init(bd_t *bis)
  19. {
  20. return ax88180_initialize(bis);
  21. }
  22. #endif