aboutsummaryrefslogtreecommitdiffstats
path: root/arch/alpha/kernel/smc37c93x.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2011-04-17 16:05:24 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-04-17 17:41:30 -0400
commit280da4e4d306667b7faa95152b54f7ca4266ff1e (patch)
tree8a9d5f1602ba8d2d9b9376acc8790a13be471764 /arch/alpha/kernel/smc37c93x.c
parent90fd30c914ec71eb8dc91259bf720b3641672696 (diff)
alpha: Remove set but unused variables.
This is a new warning in gcc 4.6. Several of these variables are used within #if 0 code, which probably ought to be removed. Most of the changes are legitimate cleanups. Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/alpha/kernel/smc37c93x.c')
-rw-r--r--arch/alpha/kernel/smc37c93x.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/alpha/kernel/smc37c93x.c b/arch/alpha/kernel/smc37c93x.c
index 3e6a2893af9f..6886b834f487 100644
--- a/arch/alpha/kernel/smc37c93x.c
+++ b/arch/alpha/kernel/smc37c93x.c
@@ -79,7 +79,6 @@
79static unsigned long __init SMCConfigState(unsigned long baseAddr) 79static unsigned long __init SMCConfigState(unsigned long baseAddr)
80{ 80{
81 unsigned char devId; 81 unsigned char devId;
82 unsigned char devRev;
83 82
84 unsigned long configPort; 83 unsigned long configPort;
85 unsigned long indexPort; 84 unsigned long indexPort;
@@ -100,7 +99,7 @@ static unsigned long __init SMCConfigState(unsigned long baseAddr)
100 devId = inb(dataPort); 99 devId = inb(dataPort);
101 if (devId == VALID_DEVICE_ID) { 100 if (devId == VALID_DEVICE_ID) {
102 outb(DEVICE_REV, indexPort); 101 outb(DEVICE_REV, indexPort);
103 devRev = inb(dataPort); 102 /* unsigned char devRev = */ inb(dataPort);
104 break; 103 break;
105 } 104 }
106 else 105 else