mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
Input: aiptek - fixed mouse button defines
Mouse button defines tested the wrong bits, now fixed Signed-off-by: Rene van Paassen <rene.vanpaassen@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
fe981f2340
commit
ce0982edae
1 changed files with 3 additions and 3 deletions
|
@ -264,9 +264,9 @@
|
|||
|
||||
/* Mouse button programming
|
||||
*/
|
||||
#define AIPTEK_MOUSE_LEFT_BUTTON 0x01
|
||||
#define AIPTEK_MOUSE_RIGHT_BUTTON 0x02
|
||||
#define AIPTEK_MOUSE_MIDDLE_BUTTON 0x04
|
||||
#define AIPTEK_MOUSE_LEFT_BUTTON 0x04
|
||||
#define AIPTEK_MOUSE_RIGHT_BUTTON 0x08
|
||||
#define AIPTEK_MOUSE_MIDDLE_BUTTON 0x10
|
||||
|
||||
/* Stylus button programming
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue