aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2014-10-20 10:22:00 -0400
committerWolfram Sang <wsa@the-dreams.de>2014-10-20 10:22:00 -0400
commitd9b97db07ae38943236773e54b3f19f1a3d9a07f (patch)
tree7549804c294220031310c58ca5206aafb34635a3
parent5d5638afa0cb252442e1746a36550b46a9ebe6ee (diff)
ALSA: drivers: mpu401: 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>
-rw-r--r--sound/drivers/mpu401/mpu401.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/drivers/mpu401/mpu401.c b/sound/drivers/mpu401/mpu401.c
index 83014b83a44e..fed7e7e2177b 100644
--- a/sound/drivers/mpu401/mpu401.c
+++ b/sound/drivers/mpu401/mpu401.c
@@ -140,7 +140,6 @@ static struct platform_driver snd_mpu401_driver = {
140 .remove = snd_mpu401_remove, 140 .remove = snd_mpu401_remove,
141 .driver = { 141 .driver = {
142 .name = SND_MPU401_DRIVER, 142 .name = SND_MPU401_DRIVER,
143 .owner = THIS_MODULE,
144 }, 143 },
145}; 144};
146 145