cm-bf561.c 457 B

1234567891011121314151617181920212223242526
  1. /*
  2. * U-Boot - main board file
  3. *
  4. * Copyright (c) 2005-2008 Analog Devices Inc.
  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: Bluetechnix CM-BF561 core module\n");
  14. printf(" Support: http://www.bluetechnix.at/\n");
  15. return 0;
  16. }
  17. #ifdef CONFIG_SMC911X
  18. int board_eth_init(bd_t *bis)
  19. {
  20. return smc911x_initialize(0, CONFIG_SMC911X_BASE);
  21. }
  22. #endif