mirror of https://gitee.com/openkylin/linux.git
ASoC: omap: drop owner assignment from platform_drivers
This 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> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
97bf6af1f9
commit
97d62a3096
|
@ -393,7 +393,6 @@ static int omap_hdmi_audio_remove(struct platform_device *pdev)
|
||||||
static struct platform_driver hdmi_audio_driver = {
|
static struct platform_driver hdmi_audio_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = DRV_NAME,
|
.name = DRV_NAME,
|
||||||
.owner = THIS_MODULE,
|
|
||||||
},
|
},
|
||||||
.probe = omap_hdmi_audio_probe,
|
.probe = omap_hdmi_audio_probe,
|
||||||
.remove = omap_hdmi_audio_remove,
|
.remove = omap_hdmi_audio_remove,
|
||||||
|
|
Loading…
Reference in New Issue