diff options
author | Wolfgang Denk <wd@denx.de> | 2008-08-12 00:36:53 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-08-12 00:36:53 +0200 |
commit | c9c101c660b3d1995045c61c7c6041f52b6cf335 (patch) | |
tree | 064008f8c6191bd046d5e39212266c9212c210b0 /cpu/mpc512x/iopin.c | |
parent | b315ad8f0aa0cf68ccc895d41c933d777fdaba8e (diff) | |
download | u-boot-imx-c9c101c660b3d1995045c61c7c6041f52b6cf335.zip u-boot-imx-c9c101c660b3d1995045c61c7c6041f52b6cf335.tar.gz u-boot-imx-c9c101c660b3d1995045c61c7c6041f52b6cf335.tar.bz2 |
ads5121: fix compiler warnings (unused variables)
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'cpu/mpc512x/iopin.c')
-rw-r--r-- | cpu/mpc512x/iopin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc512x/iopin.c b/cpu/mpc512x/iopin.c index 01ab34a..3d7042d 100644 --- a/cpu/mpc512x/iopin.c +++ b/cpu/mpc512x/iopin.c @@ -27,7 +27,7 @@ void iopin_initialize(iopin_t *ioregs_init, int len) { - short i, j, n, p; + short i, j, p; u_long *reg; immap_t *im = (immap_t *)CFG_IMMR; |