projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c0219f
)
Input: gpio_keys_polled - remove redundant platform_set_drvdata()
author
Sachin Kamat
<
[email protected]
>
Mon, 6 May 2013 14:31:56 +0000
(07:31 -0700)
committer
Dmitry Torokhov
<
[email protected]
>
Wed, 8 May 2013 16:04:42 +0000
(09:04 -0700)
Commit
0998d06310
(device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.
Signed-off-by: Sachin Kamat <
[email protected]
>
Signed-off-by: Dmitry Torokhov <
[email protected]
>
drivers/input/keyboard/gpio_keys_polled.c
patch
|
blob
|
history
diff --git
a/drivers/input/keyboard/gpio_keys_polled.c
b/drivers/input/keyboard/gpio_keys_polled.c
index 21147164874d8592227d92a96a5c97f59e217ca5..cd5ed9e221686625ba2ef92916c155c84732cb81 100644
(file)
--- a/
drivers/input/keyboard/gpio_keys_polled.c
+++ b/
drivers/input/keyboard/gpio_keys_polled.c
@@
-324,7
+324,6
@@
err_free_gpio:
err_free_bdev:
kfree(bdev);
- platform_set_drvdata(pdev, NULL);
err_free_pdata:
/* If we have no platform_data, we allocated pdata dynamically. */
@@
-355,7
+354,6
@@
static int gpio_keys_polled_remove(struct platform_device *pdev)
kfree(pdata);
kfree(bdev);
- platform_set_drvdata(pdev, NULL);
return 0;
}