diff options
author | Anatolij Gustschin <agust@denx.de> | 2016-05-06 17:16:31 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2016-05-06 18:41:49 +0200 |
commit | 5289c5fa5371dada10e9cbdcdbf3fb010905ea2d (patch) | |
tree | 89c756ecfb0f9cf5c119ffdb9a911063898897c7 /arch/arm/mach-socfpga/misc.c | |
parent | 5a824c493a31d06f04a6736fab8f67bf78145003 (diff) |
socfpga: fix broken build if CONFIG_ETH_DESIGNWARE disabled
Building without ethernet driver doesn't work. Fix it.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Cc: Marek Vasut <marex@denx.de>
Diffstat (limited to 'arch/arm/mach-socfpga/misc.c')
-rw-r--r-- | arch/arm/mach-socfpga/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-socfpga/misc.c b/arch/arm/mach-socfpga/misc.c index dd05e14c052..5cbd8a43255 100644 --- a/arch/arm/mach-socfpga/misc.c +++ b/arch/arm/mach-socfpga/misc.c @@ -172,7 +172,7 @@ static int socfpga_eth_reset(void) #else static int socfpga_eth_reset(void) { - return 0 + return 0; }; #endif |