mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-13 21:02:35 +00:00
media: platform: soc_camera: 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
6fe0f3da2f
commit
01945a4e01
@ -1068,7 +1068,6 @@ static struct platform_driver atmel_isi_driver = {
|
||||
.remove = atmel_isi_remove,
|
||||
.driver = {
|
||||
.name = "atmel_isi",
|
||||
.owner = THIS_MODULE,
|
||||
.of_match_table = of_match_ptr(atmel_isi_of_match),
|
||||
},
|
||||
};
|
||||
|
@ -1253,7 +1253,6 @@ static int mx3_camera_remove(struct platform_device *pdev)
|
||||
static struct platform_driver mx3_camera_driver = {
|
||||
.driver = {
|
||||
.name = MX3_CAM_DRV_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = mx3_camera_probe,
|
||||
.remove = mx3_camera_remove,
|
||||
|
@ -1543,7 +1543,6 @@ static struct platform_driver rcar_vin_driver = {
|
||||
.remove = rcar_vin_remove,
|
||||
.driver = {
|
||||
.name = DRV_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
.of_match_table = of_match_ptr(rcar_vin_of_table),
|
||||
},
|
||||
.id_table = rcar_vin_id_table,
|
||||
|
@ -2009,7 +2009,6 @@ MODULE_DEVICE_TABLE(of, sh_mobile_ceu_of_match);
|
||||
static struct platform_driver sh_mobile_ceu_driver = {
|
||||
.driver = {
|
||||
.name = "sh_mobile_ceu",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &sh_mobile_ceu_dev_pm_ops,
|
||||
.of_match_table = sh_mobile_ceu_of_match,
|
||||
},
|
||||
|
@ -391,7 +391,6 @@ static struct platform_driver __refdata sh_csi2_pdrv = {
|
||||
.probe = sh_csi2_probe,
|
||||
.driver = {
|
||||
.name = "sh-mobile-csi2",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -2236,7 +2236,6 @@ static struct platform_driver __refdata soc_camera_pdrv = {
|
||||
.remove = soc_camera_pdrv_remove,
|
||||
.driver = {
|
||||
.name = "soc-camera-pdrv",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -180,7 +180,6 @@ static int soc_camera_platform_remove(struct platform_device *pdev)
|
||||
static struct platform_driver soc_camera_platform_driver = {
|
||||
.driver = {
|
||||
.name = "soc_camera_platform",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = soc_camera_platform_probe,
|
||||
.remove = soc_camera_platform_remove,
|
||||
|
Loading…
x
Reference in New Issue
Block a user