diff options
author | Karl Dahlke <eklhad@comcast.net> | 2008-04-15 01:30:32 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2008-04-15 01:30:32 -0400 |
commit | 0beb4f6f294b0f2dde07fa9da9c00abd4f9c8b50 (patch) | |
tree | 2b1b330a3b836e99ca5be38a5c2923dd319c8936 /include/linux/keyboard.h | |
parent | 76d057ce5a48034c97f604a0a25a87093e072c71 (diff) | |
download | kernel-crypto-0beb4f6f294b0f2dde07fa9da9c00abd4f9c8b50.tar.gz kernel-crypto-0beb4f6f294b0f2dde07fa9da9c00abd4f9c8b50.tar.xz kernel-crypto-0beb4f6f294b0f2dde07fa9da9c00abd4f9c8b50.zip |
Input: put ledstate in the keyboard notifier
Led state should be part of the key event, like shiftstate, and not
grabbed asynchronously after the fact.
[samuel.thibault@ens-lyon.org: various fixes]
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'include/linux/keyboard.h')
-rw-r--r-- | include/linux/keyboard.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/keyboard.h b/include/linux/keyboard.h index 65c2d70853e..a3c984d780f 100644 --- a/include/linux/keyboard.h +++ b/include/linux/keyboard.h @@ -33,6 +33,7 @@ struct keyboard_notifier_param { struct vc_data *vc; /* VC on which the keyboard press was done */ int down; /* Pressure of the key? */ int shift; /* Current shift mask */ + int ledstate; /* Current led state */ unsigned int value; /* keycode, unicode value or keysym */ }; |