diff options
author | Jeff Garzik <jeff@garzik.org> | 2006-10-06 13:32:44 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-10-06 13:32:44 -0400 |
commit | 86d91bab4806191a8126502d80d729c2a4765ebe (patch) | |
tree | 1f5aa8a8566bc23db6b177117d1e53d3324602b5 /arch | |
parent | 49f19ce401edfff937c448dd74c22497da361889 (diff) |
arch/i386/kernel/time: don't shadow 'irq' function arg
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/kernel/time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/kernel/time.c b/arch/i386/kernel/time.c index 3f221f5eb47e..78af572fd17c 100644 --- a/arch/i386/kernel/time.c +++ b/arch/i386/kernel/time.c | |||
@@ -201,8 +201,8 @@ irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
201 | high bit of the PPI port B (0x61). Note that some PS/2s, | 201 | high bit of the PPI port B (0x61). Note that some PS/2s, |
202 | notably the 55SX, work fine if this is removed. */ | 202 | notably the 55SX, work fine if this is removed. */ |
203 | 203 | ||
204 | irq = inb_p( 0x61 ); /* read the current state */ | 204 | u8 irq_v = inb_p( 0x61 ); /* read the current state */ |
205 | outb_p( irq|0x80, 0x61 ); /* reset the IRQ */ | 205 | outb_p( irq_v|0x80, 0x61 ); /* reset the IRQ */ |
206 | } | 206 | } |
207 | 207 | ||
208 | write_sequnlock(&xtime_lock); | 208 | write_sequnlock(&xtime_lock); |