diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:36 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:36 +0200 |
commit | 2fe10a7ba9e9a59c29b07da5ac71de3dc5e80c9e (patch) | |
tree | c15f8d91a701b18d2faebc04a015c62c9a7f2d3d | |
parent | f271fbddfa3634fda9ea2baff047e128c9a18bf2 (diff) | |
download | linux-2fe10a7ba9e9a59c29b07da5ac71de3dc5e80c9e.tar.bz2 |
staging: android: drop owner assignment from platform_drivers
A platform_driver does not need to set an owner, it will be populated by the
driver core.
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
-rw-r--r-- | drivers/staging/android/timed_gpio.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/android/timed_gpio.c b/drivers/staging/android/timed_gpio.c index 8fa4758517c0..c71ed64931ba 100644 --- a/drivers/staging/android/timed_gpio.c +++ b/drivers/staging/android/timed_gpio.c @@ -157,7 +157,6 @@ static struct platform_driver timed_gpio_driver = { .remove = timed_gpio_remove, .driver = { .name = TIMED_GPIO_NAME, - .owner = THIS_MODULE, }, }; |