mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-02-27 14:43:07 +01:00
board/evb64260/evb64260.c: Fix GC 4.6 build warning
Fix: evb64260.c: In function 'debug_led': evb64260.c:363:6: warning: variable 'dummy' set but not used [-Wunused-but-set-variable] Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
d3a1b1bc1d
commit
54a087464d
1 changed files with 2 additions and 1 deletions
|
|
@ -32,6 +32,7 @@
|
|||
#include <galileo/gt64260R.h>
|
||||
#include <net.h>
|
||||
#include <netdev.h>
|
||||
#include <linux/compiler.h>
|
||||
|
||||
#include <asm/io.h>
|
||||
#include "eth.h"
|
||||
|
|
@ -360,7 +361,7 @@ debug_led(int led, int mode)
|
|||
{
|
||||
#if !defined(CONFIG_ZUMA_V2) && !defined(CONFIG_P3G4)
|
||||
volatile int *addr = NULL;
|
||||
int dummy;
|
||||
__maybe_unused int dummy;
|
||||
|
||||
if (mode == 1) {
|
||||
switch (led) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue