Skip to content

Commit

Permalink
Input: aiptek - fixed mouse button defines
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Rene van Paassen authored and Dmitry Torokhov committed Jul 10, 2007
1 parent fe981f2 commit ce0982e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/input/tablet/aiptek.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit ce0982e

Please sign in to comment.