aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid
diff options
context:
space:
mode:
authorMichal Malý <madcatxster@devoid-pointer.net>2015-04-08 22:56:43 +0200
committerJiri Kosina <jkosina@suse.cz>2015-05-07 16:27:08 +0200
commit371a1d9e1fed7dc4113386b23d92cccc3cfc6d8d (patch)
treeb4af45a99205744a830795577ebf4a62dd169385 /drivers/hid
parentHID: hid-lg4ff: Remove unused variable from the "lg4ff_device_entry" struct. (diff)
downloadlinux-dev-371a1d9e1fed7dc4113386b23d92cccc3cfc6d8d.tar.xz
linux-dev-371a1d9e1fed7dc4113386b23d92cccc3cfc6d8d.zip
HID: hid-lg4ff: Explicit casts from void * are not necessary
Explicit casts from void * are not necessary. Signed-off-by: Michal Malý <madcatxster@devoid-pointer.net> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r--drivers/hid/hid-lg4ff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-lg4ff.c b/drivers/hid/hid-lg4ff.c
index d1d5d45445a6..5a3b3beb521a 100644
--- a/drivers/hid/hid-lg4ff.c
+++ b/drivers/hid/hid-lg4ff.c
@@ -847,7 +847,7 @@ static void lg4ff_led_set_brightness(struct led_classdev *led_cdev,
return;
}
- entry = (struct lg4ff_device_entry *)drv_data->device_props;
+ entry = drv_data->device_props;
if (!entry) {
hid_err(hid, "Device properties not found.");
@@ -882,7 +882,7 @@ static enum led_brightness lg4ff_led_get_brightness(struct led_classdev *led_cde
return LED_OFF;
}
- entry = (struct lg4ff_device_entry *)drv_data->device_props;
+ entry = drv_data->device_props;
if (!entry) {
hid_err(hid, "Device properties not found.");