Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c1af880 authored by Wolfram Sang's avatar Wolfram Sang
Browse files

ASoC: intel: 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: default avatarWolfram Sang <wsa@the-dreams.de>
parent ffd35fa7
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -238,7 +238,6 @@ static struct platform_driver broadwell_audio = {
	.remove = broadwell_audio_remove,
	.driver = {
		.name = "broadwell-audio",
		.owner = THIS_MODULE,
	},
};

+0 −1
Original line number Diff line number Diff line
@@ -181,7 +181,6 @@ static struct platform_driver byt_max98090_driver = {
	.remove = byt_max98090_remove,
	.driver = {
		.name = "byt-max98090",
		.owner = THIS_MODULE,
		.pm = &snd_soc_pm_ops,
	},
};
+0 −1
Original line number Diff line number Diff line
@@ -224,7 +224,6 @@ static struct platform_driver byt_rt5640_audio = {
	.probe = byt_rt5640_probe,
	.driver = {
		.name = "byt-rt5640",
		.owner = THIS_MODULE,
		.pm = &snd_soc_pm_ops,
	},
};
+0 −1
Original line number Diff line number Diff line
@@ -209,7 +209,6 @@ static struct platform_driver haswell_audio = {
	.probe = haswell_audio_probe,
	.driver = {
		.name = "haswell-audio",
		.owner = THIS_MODULE,
	},
};

+0 −1
Original line number Diff line number Diff line
@@ -420,7 +420,6 @@ static int snd_mfld_mc_probe(struct platform_device *pdev)

static struct platform_driver snd_mfld_mc_driver = {
	.driver = {
		.owner = THIS_MODULE,
		.name = "msic_audio",
	},
	.probe = snd_mfld_mc_probe,
Loading