diff options
author | David Kershner <david.kershner@unisys.com> | 2018-01-31 11:41:14 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-02-16 15:42:22 +0100 |
commit | 2f095070fa4b1c8e526584dd0e7c9083e2bab3f3 (patch) | |
tree | 3ddaf81329ff67539d33663a300f12e54ed93371 /drivers/staging/unisys | |
parent | 33384891ce1a480f9bc581f804e6a0ae40f8fd1e (diff) | |
download | linux-2f095070fa4b1c8e526584dd0e7c9083e2bab3f3.tar.bz2 |
staging: unisys: visorinput: remove duplicate comments
Comments were based on individual entries, if we group the entries, we can
get rid of duplicate comments.
Signed-off-by: David Kershner <david.kershner@unisys.com>
Reviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys')
-rw-r--r-- | drivers/staging/unisys/visorinput/ultrainputreport.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/drivers/staging/unisys/visorinput/ultrainputreport.h b/drivers/staging/unisys/visorinput/ultrainputreport.h index 67dac430ce0c..5eafa6c37cd4 100644 --- a/drivers/staging/unisys/visorinput/ultrainputreport.h +++ b/drivers/staging/unisys/visorinput/ultrainputreport.h @@ -12,35 +12,33 @@ /* These defines identify mouse and keyboard activity which is specified by the * firmware to the host using the cmsimpleinput protocol. @ingroup coretypes */ - /* only motion; arg1=x, arg2=y */ +/* only motion; arg1=x, arg2=y */ #define INPUTACTION_XY_MOTION 1 + /* arg1: 1=left,2=center,3=right */ #define INPUTACTION_MOUSE_BUTTON_DOWN 2 -/* arg1: 1=left,2=center,3=right */ #define INPUTACTION_MOUSE_BUTTON_UP 3 -/* arg1: 1=left,2=center,3=right */ #define INPUTACTION_MOUSE_BUTTON_CLICK 4 -/* arg1: 1=left,2=center 3=right */ #define INPUTACTION_MOUSE_BUTTON_DCLICK 5 -/* arg1: wheel rotation away from user */ + +/* arg1: wheel rotation away from/toward user */ #define INPUTACTION_WHEEL_ROTATE_AWAY 6 -/* arg1: wheel rotation toward user */ #define INPUTACTION_WHEEL_ROTATE_TOWARD 7 + /* arg1: scancode, as follows: If arg1 <= 0xff, it's a 1-byte scancode and arg1 * is that scancode. If arg1 > 0xff, it's a 2-byte scanecode, with the 1st * byte in the low 8 bits, and the 2nd byte in the high 8 bits. * E.g., the right ALT key would appear as x'38e0'. */ #define INPUTACTION_KEY_DOWN 64 -/* arg1: scancode (in same format as inputaction_keyDown) */ #define INPUTACTION_KEY_UP 65 +#define INPUTACTION_KEY_DOWN_UP 67 + /* arg1: scancode (in same format as inputaction_keyDown); MUST refer to one of * the locking keys, like capslock, numlock, or scrolllock. * arg2: 1 iff locking key should be in the LOCKED position (e.g., light is ON) */ #define INPUTACTION_SET_LOCKING_KEY_STATE 66 -/* arg1: scancode (in same format as inputaction_keyDown */ -#define INPUTACTION_KEY_DOWN_UP 67 struct visor_inputactivity { u16 action; |