mirror of https://gitee.com/openkylin/linux.git
media: radio: si4713: 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>
This commit is contained in:
parent
da2dc6fff5
commit
b2e385395e
|
@ -236,7 +236,6 @@ static int radio_si4713_pdriver_remove(struct platform_device *pdev)
|
||||||
static struct platform_driver radio_si4713_pdriver = {
|
static struct platform_driver radio_si4713_pdriver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "radio-si4713",
|
.name = "radio-si4713",
|
||||||
.owner = THIS_MODULE,
|
|
||||||
},
|
},
|
||||||
.probe = radio_si4713_pdriver_probe,
|
.probe = radio_si4713_pdriver_probe,
|
||||||
.remove = radio_si4713_pdriver_remove,
|
.remove = radio_si4713_pdriver_remove,
|
||||||
|
|
Loading…
Reference in New Issue