Skip to content

Commit

Permalink
sunxi: Avoid unused variable warning.
Browse files Browse the repository at this point in the history
Mark rc as __maybe_unused since it is infact unused on systems with neither
EMAC nor GMAC.

Signed-off-by: Ian Campbell <ijc@hellion.org.uk>
Acked-by: Tom Rini <trini@ti.com>
  • Loading branch information
ijc committed Jul 8, 2014
1 parent db53073 commit 799aff3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion arch/arm/cpu/armv7/sunxi/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
#include <asm/arch/sys_proto.h>
#include <asm/arch/timer.h>

#include <linux/compiler.h>

#ifdef CONFIG_SPL_BUILD
/* Pointer to the global data structure for SPL */
DECLARE_GLOBAL_DATA_PTR;
Expand Down Expand Up @@ -115,7 +117,7 @@ void enable_caches(void)
*/
int cpu_eth_init(bd_t *bis)
{
int rc;
__maybe_unused int rc;

#ifdef CONFIG_SUNXI_EMAC
rc = sunxi_emac_initialize(bis);
Expand Down

0 comments on commit 799aff3

Please sign in to comment.