Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Krzysztof Kozlowski and committed by
Chanwoo Choi
bef025a1 bb327e92

-2
-1
drivers/extcon/extcon-rt8973a.c
··· 693 693 static struct i2c_driver rt8973a_muic_i2c_driver = { 694 694 .driver = { 695 695 .name = "rt8973a", 696 - .owner = THIS_MODULE, 697 696 .pm = &rt8973a_muic_pm_ops, 698 697 .of_match_table = rt8973a_dt_match, 699 698 },
-1
drivers/extcon/extcon-sm5502.c
··· 685 685 static struct i2c_driver sm5502_muic_i2c_driver = { 686 686 .driver = { 687 687 .name = "sm5502", 688 - .owner = THIS_MODULE, 689 688 .pm = &sm5502_muic_pm_ops, 690 689 .of_match_table = sm5502_dt_match, 691 690 },