From: Wolfram Sang Date: Mon, 20 Oct 2014 14:21:36 +0000 (+0200) Subject: staging: android: drop owner assignment from platform_drivers X-Git-Tag: v3.19-rc1~78^2~25^2~86 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2fe10a7ba9e9a59c29b07da5ac71de3dc5e80c9e;p=karo-tx-linux.git 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 --- 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, }, };