Commit 371a1d9e authored by Michal Malý's avatar Michal Malý Committed by Jiri Kosina

HID: hid-lg4ff: Explicit casts from void * are not necessary

Explicit casts from void * are not necessary.
Signed-off-by: default avatarMichal Malý <madcatxster@devoid-pointer.net>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 0a33a7bc
......@@ -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.");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment