]> git.sur5r.net Git - u-boot/blobdiff - board/csb637/csb637.c
cfb_console.c: checkpatch cleanup
[u-boot] / board / csb637 / csb637.c
index fbc3c87c5da05e323632ffc43c3f945491d60968..d7fdcc4f7398684ccdd2e9257d9a7a6c7e87eebe 100644 (file)
 
 #include <common.h>
 #include <asm/arch/AT91RM9200.h>
+#include <netdev.h>
+#include <asm/io.h>
+#if defined(CONFIG_DRIVER_ETHER)
 #include <at91rm9200_net.h>
 #include <bcm5221.h>
+#endif
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -79,3 +83,12 @@ void at91rm9200_GetPhyInterface(AT91PS_PhyOps p_phyops)
 
 #endif
 #endif /* CONFIG_DRIVER_ETHER */
+
+#ifdef CONFIG_DRIVER_AT91EMAC
+int board_eth_init(bd_t *bis)
+{
+       int rc = 0;
+       rc = at91emac_register(bis, 0);
+       return rc;
+}
+#endif