aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/keyboard
diff options
context:
space:
mode:
authorFabrice Knevez <nuxdoors@cegetel.net>2006-12-14 15:20:29 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-17 14:06:58 -0800
commit9bc83dcff8fab1f22048c8f82deb3198ec44d53f (patch)
tree7109243c946df51d1143a55dd15eed3b1e1fcb96 /drivers/input/keyboard
parent[DocBook]: Fix two typos in generic IRQ docs. (diff)
downloadlinux-dev-9bc83dcff8fab1f22048c8f82deb3198ec44d53f.tar.xz
linux-dev-9bc83dcff8fab1f22048c8f82deb3198ec44d53f.zip
[SUNKBD]: Fix sunkbd_enable(sunkbd, 0); obvious.
"sunkbd_enable(sunkbd, 0);" has no effect. Adding "sunkbd->enabled = enable" in sunkbd_enable (obvious) Signed-off-by: Fabrice Knevez <nuxdoors@cegetel.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/input/keyboard')
-rw-r--r--drivers/input/keyboard/sunkbd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/keyboard/sunkbd.c b/drivers/input/keyboard/sunkbd.c
index 3826db9403e6..cc0238366414 100644
--- a/drivers/input/keyboard/sunkbd.c
+++ b/drivers/input/keyboard/sunkbd.c
@@ -225,7 +225,7 @@ static void sunkbd_reinit(struct work_struct *work)
static void sunkbd_enable(struct sunkbd *sunkbd, int enable)
{
serio_pause_rx(sunkbd->serio);
- sunkbd->enabled = 1;
+ sunkbd->enabled = enable;
serio_continue_rx(sunkbd->serio);
}