Commit 8bf01d8a authored by Takashi Iwai's avatar Takashi Iwai

ALSA: Add missing .owner=THIS_MODULE to platform_driver definitions

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 6887a413
...@@ -589,6 +589,7 @@ static struct platform_driver atmel_abdac_driver = { ...@@ -589,6 +589,7 @@ static struct platform_driver atmel_abdac_driver = {
.remove = __devexit_p(atmel_abdac_remove), .remove = __devexit_p(atmel_abdac_remove),
.driver = { .driver = {
.name = "atmel_abdac", .name = "atmel_abdac",
.owner = THIS_MODULE,
}, },
.suspend = atmel_abdac_suspend, .suspend = atmel_abdac_suspend,
.resume = atmel_abdac_resume, .resume = atmel_abdac_resume,
......
...@@ -1210,6 +1210,7 @@ static struct platform_driver atmel_ac97c_driver = { ...@@ -1210,6 +1210,7 @@ static struct platform_driver atmel_ac97c_driver = {
.remove = __devexit_p(atmel_ac97c_remove), .remove = __devexit_p(atmel_ac97c_remove),
.driver = { .driver = {
.name = "atmel_ac97c", .name = "atmel_ac97c",
.owner = THIS_MODULE,
}, },
.suspend = atmel_ac97c_suspend, .suspend = atmel_ac97c_suspend,
.resume = atmel_ac97c_resume, .resume = atmel_ac97c_resume,
......
...@@ -1209,7 +1209,8 @@ static struct platform_driver loopback_driver = { ...@@ -1209,7 +1209,8 @@ static struct platform_driver loopback_driver = {
.resume = loopback_resume, .resume = loopback_resume,
#endif #endif
.driver = { .driver = {
.name = SND_LOOPBACK_DRIVER .name = SND_LOOPBACK_DRIVER,
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -1094,7 +1094,8 @@ static struct platform_driver snd_dummy_driver = { ...@@ -1094,7 +1094,8 @@ static struct platform_driver snd_dummy_driver = {
.resume = snd_dummy_resume, .resume = snd_dummy_resume,
#endif #endif
.driver = { .driver = {
.name = SND_DUMMY_DRIVER .name = SND_DUMMY_DRIVER,
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -139,7 +139,8 @@ static struct platform_driver snd_mpu401_driver = { ...@@ -139,7 +139,8 @@ static struct platform_driver snd_mpu401_driver = {
.probe = snd_mpu401_probe, .probe = snd_mpu401_probe,
.remove = __devexit_p(snd_mpu401_remove), .remove = __devexit_p(snd_mpu401_remove),
.driver = { .driver = {
.name = SND_MPU401_DRIVER .name = SND_MPU401_DRIVER,
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -759,7 +759,8 @@ static struct platform_driver snd_mtpav_driver = { ...@@ -759,7 +759,8 @@ static struct platform_driver snd_mtpav_driver = {
.probe = snd_mtpav_probe, .probe = snd_mtpav_probe,
.remove = __devexit_p(snd_mtpav_remove), .remove = __devexit_p(snd_mtpav_remove),
.driver = { .driver = {
.name = SND_MTPAV_DRIVER .name = SND_MTPAV_DRIVER,
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -1040,7 +1040,8 @@ static struct platform_driver snd_mts64_driver = { ...@@ -1040,7 +1040,8 @@ static struct platform_driver snd_mts64_driver = {
.probe = snd_mts64_probe, .probe = snd_mts64_probe,
.remove = __devexit_p(snd_mts64_remove), .remove = __devexit_p(snd_mts64_remove),
.driver = { .driver = {
.name = PLATFORM_DRIVER .name = PLATFORM_DRIVER,
.owner = THIS_MODULE,
} }
}; };
......
...@@ -829,7 +829,8 @@ static struct platform_driver snd_portman_driver = { ...@@ -829,7 +829,8 @@ static struct platform_driver snd_portman_driver = {
.probe = snd_portman_probe, .probe = snd_portman_probe,
.remove = __devexit_p(snd_portman_remove), .remove = __devexit_p(snd_portman_remove),
.driver = { .driver = {
.name = PLATFORM_DRIVER .name = PLATFORM_DRIVER,
.owner = THIS_MODULE,
} }
}; };
......
...@@ -995,7 +995,8 @@ static struct platform_driver snd_serial_driver = { ...@@ -995,7 +995,8 @@ static struct platform_driver snd_serial_driver = {
.probe = snd_serial_probe, .probe = snd_serial_probe,
.remove = __devexit_p( snd_serial_remove), .remove = __devexit_p( snd_serial_remove),
.driver = { .driver = {
.name = SND_SERIAL_DRIVER .name = SND_SERIAL_DRIVER,
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -142,7 +142,8 @@ static struct platform_driver snd_virmidi_driver = { ...@@ -142,7 +142,8 @@ static struct platform_driver snd_virmidi_driver = {
.probe = snd_virmidi_probe, .probe = snd_virmidi_probe,
.remove = __devexit_p(snd_virmidi_remove), .remove = __devexit_p(snd_virmidi_remove),
.driver = { .driver = {
.name = SND_VIRMIDI_DRIVER .name = SND_VIRMIDI_DRIVER,
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -169,7 +169,8 @@ static struct platform_driver snd_pmac_driver = { ...@@ -169,7 +169,8 @@ static struct platform_driver snd_pmac_driver = {
.resume = snd_pmac_driver_resume, .resume = snd_pmac_driver_resume,
#endif #endif
.driver = { .driver = {
.name = SND_PMAC_DRIVER .name = SND_PMAC_DRIVER,
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -654,7 +654,9 @@ static struct platform_driver snd_aica_driver = { ...@@ -654,7 +654,9 @@ static struct platform_driver snd_aica_driver = {
.probe = snd_aica_probe, .probe = snd_aica_probe,
.remove = __devexit_p(snd_aica_remove), .remove = __devexit_p(snd_aica_remove),
.driver = { .driver = {
.name = SND_AICA_DRIVER}, .name = SND_AICA_DRIVER,
.owner = THIS_MODULE,
},
}; };
static int __init aica_init(void) static int __init aica_init(void)
......
...@@ -438,6 +438,7 @@ static struct platform_driver sh_dac_driver = { ...@@ -438,6 +438,7 @@ static struct platform_driver sh_dac_driver = {
.remove = snd_sh_dac_remove, .remove = snd_sh_dac_remove,
.driver = { .driver = {
.name = "dac_audio", .name = "dac_audio",
.owner = THIS_MODULE,
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment