aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorQi Yong <qiyong@mail.fc-cn.com>2007-06-28 00:47:10 -0400
committerDmitry Torokhov <dtor@insightbb.com>2007-06-28 00:47:10 -0400
commit9f7a60d6e47a70957e5f6676cfe8c83956b08aa6 (patch)
tree5b3957111dba2925f63ae301683f5a90b02efee3 /drivers/input
parentda4249c99fd59c4e224e4f9acaf07669d205bb1d (diff)
Input: atkbd - use printk_ratelimit for spurious ACK messages
Signed-off-by: Qi Yong <qiyong@mail.fc-cn.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/keyboard/atkbd.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
index 9e80012d0d0c..9950fcb33650 100644
--- a/drivers/input/keyboard/atkbd.c
+++ b/drivers/input/keyboard/atkbd.c
@@ -409,9 +409,10 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data,
409 goto out; 409 goto out;
410 case ATKBD_RET_ACK: 410 case ATKBD_RET_ACK:
411 case ATKBD_RET_NAK: 411 case ATKBD_RET_NAK:
412 printk(KERN_WARNING "atkbd.c: Spurious %s on %s. " 412 if (printk_ratelimit())
413 "Some program might be trying access hardware directly.\n", 413 printk(KERN_WARNING "atkbd.c: Spurious %s on %s. "
414 data == ATKBD_RET_ACK ? "ACK" : "NAK", serio->phys); 414 "Some program might be trying access hardware directly.\n",
415 data == ATKBD_RET_ACK ? "ACK" : "NAK", serio->phys);
415 goto out; 416 goto out;
416 case ATKBD_RET_HANGEUL: 417 case ATKBD_RET_HANGEUL:
417 case ATKBD_RET_HANJA: 418 case ATKBD_RET_HANJA: