From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Fri, 06 May 2016 18:31:51 +0200 Subject: [U-Boot] [PATCH] socfpga: fix broken build if CONFIG_ETH_DESIGNWARE disabled In-Reply-To: <1462547791-23935-1-git-send-email-agust@denx.de> References: <1462547791-23935-1-git-send-email-agust@denx.de> Message-ID: <572CC6F7.5020306@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 05/06/2016 05:16 PM, Anatolij Gustschin wrote: > Building without ethernet driver doesn't work. Fix it. > > Signed-off-by: Anatolij Gustschin > Cc: Marek Vasut Nice find, applied, thanks! > --- > arch/arm/mach-socfpga/misc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/mach-socfpga/misc.c b/arch/arm/mach-socfpga/misc.c > index dd05e14..5cbd8a4 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 > > -- Best regards, Marek Vasut