diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-07-10 14:50:20 +0900 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2015-08-10 11:48:56 +0900 |
commit | bef025a1f8e0e566f954613f4e5087f6b156e2a5 (patch) | |
tree | 8a66025ad773865c55d10d7e64440b8931286243 /drivers/extcon | |
parent | bb327e92a9651c4d9bbf8ee9a367d575d7e6a102 (diff) | |
download | linux-bef025a1f8e0e566f954613f4e5087f6b156e2a5.tar.gz linux-bef025a1f8e0e566f954613f4e5087f6b156e2a5.tar.bz2 linux-bef025a1f8e0e566f954613f4e5087f6b156e2a5.zip |
extcon: 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: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon')
-rw-r--r-- | drivers/extcon/extcon-rt8973a.c | 1 | ||||
-rw-r--r-- | drivers/extcon/extcon-sm5502.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/extcon/extcon-rt8973a.c b/drivers/extcon/extcon-rt8973a.c index 92c939221a41..11592e980bc1 100644 --- a/drivers/extcon/extcon-rt8973a.c +++ b/drivers/extcon/extcon-rt8973a.c @@ -693,7 +693,6 @@ MODULE_DEVICE_TABLE(i2c, rt8973a_i2c_id); static struct i2c_driver rt8973a_muic_i2c_driver = { .driver = { .name = "rt8973a", - .owner = THIS_MODULE, .pm = &rt8973a_muic_pm_ops, .of_match_table = rt8973a_dt_match, }, diff --git a/drivers/extcon/extcon-sm5502.c b/drivers/extcon/extcon-sm5502.c index 817dece23b4c..0ffefefa2e26 100644 --- a/drivers/extcon/extcon-sm5502.c +++ b/drivers/extcon/extcon-sm5502.c @@ -685,7 +685,6 @@ MODULE_DEVICE_TABLE(i2c, sm5502_i2c_id); static struct i2c_driver sm5502_muic_i2c_driver = { .driver = { .name = "sm5502", - .owner = THIS_MODULE, .pm = &sm5502_muic_pm_ops, .of_match_table = sm5502_dt_match, }, |