Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

arch/i386/kernel/time: don't shadow 'irq' function arg

Signed-off-by: Jeff Garzik <jeff@garzik.org>

+2 -2
+2 -2
arch/i386/kernel/time.c
··· 201 201 high bit of the PPI port B (0x61). Note that some PS/2s, 202 202 notably the 55SX, work fine if this is removed. */ 203 203 204 - irq = inb_p( 0x61 ); /* read the current state */ 205 - outb_p( irq|0x80, 0x61 ); /* reset the IRQ */ 204 + u8 irq_v = inb_p( 0x61 ); /* read the current state */ 205 + outb_p( irq_v|0x80, 0x61 ); /* reset the IRQ */ 206 206 } 207 207 208 208 write_sequnlock(&xtime_lock);