diff options
| author | Linus Torvalds <torvalds@home.osdl.org> | 2003-09-20 03:10:07 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-09-20 03:10:07 -0700 |
| commit | c858213a8e352e62e92bc5d534cec71fc0024843 (patch) | |
| tree | 1aebab822a6b614bd40ccb48c2a467ef8b38636d | |
| parent | 9d9226df169572a4433535debfdaaa48e59a1dde (diff) | |
Avoid type warning for bit operation in atkbd.c
| -rw-r--r-- | drivers/input/keyboard/atkbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c index 5a85e5c4f1e6..9f7726d91402 100644 --- a/drivers/input/keyboard/atkbd.c +++ b/drivers/input/keyboard/atkbd.c @@ -204,7 +204,7 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data, if (!atkbd->release) { mod_timer(&atkbd->timer, jiffies + (test_bit(atkbd->keycode[code], - &atkbd->dev.key) ? HZ/33 : HZ/4) + HZ/100); + atkbd->dev.key) ? HZ/33 : HZ/4) + HZ/100); atkbd->lastkey = atkbd->keycode[code]; } |
