diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-11-19 12:57:11 +0900 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-11-30 09:31:00 +0100 |
commit | d9110e9ce7ed98b24fa58764833e89a430843c21 (patch) | |
tree | 82fd0ef7e992a0f3f53bcf26d29a7ab6eec93aad /drivers/gpio/gpio-max7300.c | |
parent | c88402c2e63d0dc957d4748e249dfc40ec954086 (diff) |
gpio: Drop owner assignment from i2c_driver
i2c_driver does not need to set an owner because i2c_register_driver()
will set it.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-max7300.c')
-rw-r--r-- | drivers/gpio/gpio-max7300.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-max7300.c b/drivers/gpio/gpio-max7300.c index 0cc2c279ab5c..1ae9ba851c9a 100644 --- a/drivers/gpio/gpio-max7300.c +++ b/drivers/gpio/gpio-max7300.c @@ -65,7 +65,6 @@ MODULE_DEVICE_TABLE(i2c, max7300_id); static struct i2c_driver max7300_driver = { .driver = { .name = "max7300", - .owner = THIS_MODULE, }, .probe = max7300_probe, .remove = max7300_remove, |