mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-08-23 21:56:23 -04: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
@ -32,6 +32,7 @@
|
|||||||
#include <galileo/gt64260R.h>
|
#include <galileo/gt64260R.h>
|
||||||
#include <net.h>
|
#include <net.h>
|
||||||
#include <netdev.h>
|
#include <netdev.h>
|
||||||
|
#include <linux/compiler.h>
|
||||||
|
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include "eth.h"
|
#include "eth.h"
|
||||||
@ -360,7 +361,7 @@ debug_led(int led, int mode)
|
|||||||
{
|
{
|
||||||
#if !defined(CONFIG_ZUMA_V2) && !defined(CONFIG_P3G4)
|
#if !defined(CONFIG_ZUMA_V2) && !defined(CONFIG_P3G4)
|
||||||
volatile int *addr = NULL;
|
volatile int *addr = NULL;
|
||||||
int dummy;
|
__maybe_unused int dummy;
|
||||||
|
|
||||||
if (mode == 1) {
|
if (mode == 1) {
|
||||||
switch (led) {
|
switch (led) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user