Commit eb52ed98 authored by David S. Miller's avatar David S. Miller

drivers/input/serio/i8042-sparcio.h: Define I8042_{COMMAND,DATA}_REG.

parent 8a9b5eed
......@@ -14,6 +14,9 @@ static int i8042_aux_irq = -1;
static unsigned long kbd_iobase;
#define I8042_COMMAND_REG (kbd_iobase + 0x64UL)
#define I8042_DATA_REG (kbd_iobase + 0x60UL)
static inline int i8042_read_data(void)
{
return readb(kbd_iobase + 0x60UL);
......@@ -88,9 +91,6 @@ static int i8042_platform_init(void)
}
}
printk("i8042: kbd_base[%lx] irq[kbd(%x):aux(%x)]\n",
kbd_iobase, i8042_kbd_irq, i8042_aux_irq);
return 1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment