aboutsummaryrefslogtreecommitdiff
path: root/board/ep82xxm
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2011-11-05 05:13:09 +0000
committerWolfgang Denk <wd@denx.de>2011-11-07 22:47:58 +0100
commit419abb6af6e627196d68172dbb4c681fdac041e6 (patch)
tree305e76224ce993718223c26b610fd211f224cefe /board/ep82xxm
parent5a5f34a1e0c0957d6f776f45745248527b5b1728 (diff)
board/ep82xxm/ep82xxm.c: Fix GCC 4.6 build warning
Fix: ep82xxm.c: In function 'initdram': ep82xxm.c:233:16: warning: variable 'ramtmp' set but not used [-Wunused-but-set-variable] Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/ep82xxm')
-rw-r--r--board/ep82xxm/ep82xxm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/board/ep82xxm/ep82xxm.c b/board/ep82xxm/ep82xxm.c
index c1d6e9100..182cabca1 100644
--- a/board/ep82xxm/ep82xxm.c
+++ b/board/ep82xxm/ep82xxm.c
@@ -31,6 +31,7 @@
#include <pci.h>
#endif
#include <miiphy.h>
+#include <linux/compiler.h>
/*
* I/O Port configuration table
@@ -230,8 +231,8 @@ phys_size_t initdram(int board_type)
uint psdmr = CONFIG_SYS_PSDMR;
int i;
- unsigned char ramtmp;
unsigned char *ramptr1 = (unsigned char *)0x00000110;
+ __maybe_unused unsigned char ramtmp;
memctl->memc_mptpr = CONFIG_SYS_MPTPR;