diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-01-11 22:41:16 -0800 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2016-01-28 12:22:41 -0600 |
commit | c712df1d1d385fbbb1c02803b6ca117162e174c8 (patch) | |
tree | 01cbf1dfb2df61483c8bdb3b900b9ec69d7307b2 /board/freescale | |
parent | 1adc09544fc4479b1d275e71efa8c55f1446cdee (diff) | |
download | u-boot-imx-c712df1d1d385fbbb1c02803b6ca117162e174c8.zip u-boot-imx-c712df1d1d385fbbb1c02803b6ca117162e174c8.tar.gz u-boot-imx-c712df1d1d385fbbb1c02803b6ca117162e174c8.tar.bz2 |
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')
-rw-r--r-- | board/freescale/p1010rdb/p1010rdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/p1010rdb/p1010rdb.c b/board/freescale/p1010rdb/p1010rdb.c index ebffe9a..1ae1540 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) |