aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorPing Cheng <pinglinux@gmail.com>2013-09-20 12:50:14 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2013-09-20 12:58:58 -0400
commitc2b0c273e59f66ded73fe04a9460fa1bcd494aa5 (patch)
treee09cb87c4822e0b396e623db1a65857a628721f2 /drivers/input
parent1b2faaf7e219fc2905d75afcd4c815e5d39eda80 (diff)
Input: wacom - LED is only supported through digitizer interface
Signed-off-by: Ping Cheng <pingc@wacom.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/tablet/wacom_sys.c24
1 files changed, 14 insertions, 10 deletions
diff --git a/drivers/input/tablet/wacom_sys.c b/drivers/input/tablet/wacom_sys.c
index f8b30d0cb210..e21197be6a5a 100644
--- a/drivers/input/tablet/wacom_sys.c
+++ b/drivers/input/tablet/wacom_sys.c
@@ -978,14 +978,17 @@ static int wacom_initialize_leds(struct wacom *wacom)
978 case INTUOS5S: 978 case INTUOS5S:
979 case INTUOS5: 979 case INTUOS5:
980 case INTUOS5L: 980 case INTUOS5L:
981 wacom->led.select[0] = 0; 981 if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN) {
982 wacom->led.select[1] = 0; 982 wacom->led.select[0] = 0;
983 wacom->led.llv = 32; 983 wacom->led.select[1] = 0;
984 wacom->led.hlv = 0; 984 wacom->led.llv = 32;
985 wacom->led.img_lum = 0; 985 wacom->led.hlv = 0;
986 986 wacom->led.img_lum = 0;
987 error = sysfs_create_group(&wacom->intf->dev.kobj, 987
988 &intuos5_led_attr_group); 988 error = sysfs_create_group(&wacom->intf->dev.kobj,
989 &intuos5_led_attr_group);
990 } else
991 return 0;
989 break; 992 break;
990 993
991 default: 994 default:
@@ -1021,8 +1024,9 @@ static void wacom_destroy_leds(struct wacom *wacom)
1021 case INTUOS5S: 1024 case INTUOS5S:
1022 case INTUOS5: 1025 case INTUOS5:
1023 case INTUOS5L: 1026 case INTUOS5L:
1024 sysfs_remove_group(&wacom->intf->dev.kobj, 1027 if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN)
1025 &intuos5_led_attr_group); 1028 sysfs_remove_group(&wacom->intf->dev.kobj,
1029 &intuos5_led_attr_group);
1026 break; 1030 break;
1027 } 1031 }
1028} 1032}