1
0
Fork 0

Staging: nvec: removes a useless cast on a void pointer

Remove an unnecessary cast on a void pointer in nvec_power.c

Signed-off-by: Ben Marsh <bmarsh94@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
steinar/wifi_calib_4_9_kernel
Ben Marsh 2016-03-15 19:37:54 +01:00 committed by Greg Kroah-Hartman
parent f05f33fae3
commit a3dac5a35c
1 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ static int nvec_power_notifier(struct notifier_block *nb,
{
struct nvec_power *power =
container_of(nb, struct nvec_power, notifier);
struct bat_response *res = (struct bat_response *)data;
struct bat_response *res = data;
if (event_type != NVEC_SYS)
return NOTIFY_DONE;
@ -126,7 +126,7 @@ static int nvec_power_bat_notifier(struct notifier_block *nb,
{
struct nvec_power *power =
container_of(nb, struct nvec_power, notifier);
struct bat_response *res = (struct bat_response *)data;
struct bat_response *res = data;
int status_changed = 0;
if (event_type != NVEC_BAT)