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

Signed-off-by: Ben Marsh <bmars...@gmail.com>
---
 drivers/staging/nvec/nvec_power.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/nvec/nvec_power.c 
b/drivers/staging/nvec/nvec_power.c
index b4a0545..fcbb0fa 100644
--- a/drivers/staging/nvec/nvec_power.c
+++ b/drivers/staging/nvec/nvec_power.c
@@ -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)
-- 
1.9.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to