summaryrefslogtreecommitdiffstats
path: root/board/freescale/p1010rdb
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2016-01-11 22:41:16 -0800
committerJoe Hershberger <joe.hershberger@ni.com>2016-01-28 12:22:41 -0600
commitc712df1d1d385fbbb1c02803b6ca117162e174c8 (patch)
tree01cbf1dfb2df61483c8bdb3b900b9ec69d7307b2 /board/freescale/p1010rdb
parent1adc09544fc4479b1d275e71efa8c55f1446cdee (diff)
downloadblackbird-obmc-uboot-c712df1d1d385fbbb1c02803b6ca117162e174c8.tar.gz
blackbird-obmc-uboot-c712df1d1d385fbbb1c02803b6ca117162e174c8.zip
powerpc: p1010rdb: Do not wrap pci_eth_init() with CONFIG_TSEC_ENET
The call to pci_eth_init() should not be wrapped with CONFIG_TSEC_ENET. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'board/freescale/p1010rdb')
-rw-r--r--board/freescale/p1010rdb/p1010rdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/p1010rdb/p1010rdb.c b/board/freescale/p1010rdb/p1010rdb.c
index ebffe9a58a..1ae15407db 100644
--- a/board/freescale/p1010rdb/p1010rdb.c
+++ b/board/freescale/p1010rdb/p1010rdb.c
@@ -326,9 +326,9 @@ int checkboard(void)
return 0;
}
-#ifdef CONFIG_TSEC_ENET
int board_eth_init(bd_t *bis)
{
+#ifdef CONFIG_TSEC_ENET
struct fsl_pq_mdio_info mdio_info;
struct tsec_info_struct tsec_info[4];
struct cpu_type *cpu;
@@ -362,10 +362,10 @@ int board_eth_init(bd_t *bis)
fsl_pq_mdio_init(bis, &mdio_info);
tsec_eth_init(bis, tsec_info, num);
+#endif
return pci_eth_init(bis);
}
-#endif
#if defined(CONFIG_OF_BOARD_SETUP)
void fdt_del_flexcan(void *blob)
OpenPOWER on IntegriCloud