pr1.c 568 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * U-Boot - main board file
  3. *
  4. * Copyright (c) Switchfin Org. <dpn@switchfin.org>
  5. *
  6. * Copyright (c) 2005-2008 Analog Devices Inc.
  7. *
  8. * (C) Copyright 2000-2004
  9. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  10. *
  11. * Licensed under the GPL-2 or later.
  12. */
  13. #include <common.h>
  14. #include <net.h>
  15. #include <netdev.h>
  16. int checkboard(void)
  17. {
  18. printf("Board: Switchvoice PR1 Appliance\n");
  19. printf(" Support: http://www.switchvoice.com/\n");
  20. return 0;
  21. }
  22. #ifdef CONFIG_BFIN_MAC
  23. int board_eth_init(bd_t *bis)
  24. {
  25. return bfin_EMAC_initialize(bis);
  26. }
  27. #endif