diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-02-25 00:03:10 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-03-02 21:12:06 +0100 |
commit | c9bcf75fecc58886af77d2a571cff2eab39eab6f (patch) | |
tree | d839639332c5ad31bdfe643de46d5951b71e630e /board/actux1 | |
parent | f8fa6368a6a0c02164da8e2f52f18d457c6977bd (diff) | |
download | u-boot-imx-c9bcf75fecc58886af77d2a571cff2eab39eab6f.zip u-boot-imx-c9bcf75fecc58886af77d2a571cff2eab39eab6f.tar.gz u-boot-imx-c9bcf75fecc58886af77d2a571cff2eab39eab6f.tar.bz2 |
actua1/actua2/actua3: Fix multiple unused variable warnings
- actua1:
actux1.c: In function 'checkboard':
actux1.c:92: warning: unused variable 'revision'
- actua2:
actux2.c: In function 'checkboard':
actux2.c:100: warning: unused variable 's'
actux2.c:99: warning: unused variable 'revision'
actux2.c: In function 'reset_phy':
actux2.c:130: warning: unused variable 'i'
- actua3:
actux3.c: In function 'checkboard':
actux3.c:114: warning: unused variable 'revision'
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/actux1')
-rw-r--r-- | board/actux1/actux1.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/board/actux1/actux1.c b/board/actux1/actux1.c index b555fdb..d1d7f6c 100644 --- a/board/actux1/actux1.c +++ b/board/actux1/actux1.c @@ -89,7 +89,6 @@ int board_init (void) */ int checkboard (void) { - char revision; char *s = getenv ("serial#"); puts ("Board: AcTux-1 rev."); |