diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-04-22 17:55:10 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-05-04 16:51:53 +0200 |
commit | aab096401c527641235cd93b188b34ed9dc99617 (patch) | |
tree | 0b51794591662beaff33afc8aff0ed9a48b07b73 /arch/arm/include/asm | |
parent | f9b7a04bc8aae9b1ffe35c8cc90e1a59f618a9ab (diff) | |
download | u-boot-imx-aab096401c527641235cd93b188b34ed9dc99617.zip u-boot-imx-aab096401c527641235cd93b188b34ed9dc99617.tar.gz u-boot-imx-aab096401c527641235cd93b188b34ed9dc99617.tar.bz2 |
sunxi: gmac: Move sunxi_gmac_initialize proto out of netdev.h
netdev.h should not be included in driver-model enabled builds (doing so
causes compiler warnings about struct eth_driver not being declared), but
we do use sunxi_gmac_initialize in the driver-model case, so move it out of
netdev.h .
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/arch-sunxi/sys_proto.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-sunxi/sys_proto.h b/arch/arm/include/asm/arch-sunxi/sys_proto.h index 60a5bd8..9df3744 100644 --- a/arch/arm/include/asm/arch-sunxi/sys_proto.h +++ b/arch/arm/include/asm/arch-sunxi/sys_proto.h @@ -23,4 +23,7 @@ void sdelay(unsigned long); */ void return_to_fel(uint32_t lr, uint32_t sp); +/* Board / SoC level designware gmac init */ +int sunxi_gmac_initialize(bd_t *bis); + #endif |