diff options
Diffstat (limited to 'net/eth_legacy.c')
-rw-r--r-- | net/eth_legacy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/eth_legacy.c b/net/eth_legacy.c index 35f8d398a65..340469ba3aa 100644 --- a/net/eth_legacy.c +++ b/net/eth_legacy.c @@ -23,12 +23,12 @@ DECLARE_GLOBAL_DATA_PTR; * CPU and board-specific Ethernet initializations. Aliased function * signals caller to move on */ -static int __def_eth_init(bd_t *bis) +static int __def_eth_init(struct bd_info *bis) { return -1; } -int cpu_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init"))); -int board_eth_init(bd_t *bis) __attribute__((weak, alias("__def_eth_init"))); +int cpu_eth_init(struct bd_info *bis) __attribute__((weak, alias("__def_eth_init"))); +int board_eth_init(struct bd_info *bis) __attribute__((weak, alias("__def_eth_init"))); #ifdef CONFIG_API static struct { |