diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2008-04-14 07:33:36 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-04-24 06:00:35 -0400 |
commit | 8b45a209935c4b79905182608922736ba0e5579e (patch) | |
tree | d7bb9d5549122d6d8b39305654895fd35e515d05 /sound/arm | |
parent | 0fc9dec46fae19da9899c580a6b870202103f8bb (diff) |
[ALSA] sound: fix platform driver hotplug/coldplug
Since 43cc71eed1250755986da4c0f9898f9a635cb3bf, the platform modalias is
prefixed with "platform:". Add MODULE_ALIAS() to the hotpluggable sound
platform drivers, to re-enable auto loading.
[dbrownell@users.sourceforge.net: more drivers, registration fixes]
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/arm')
-rw-r--r-- | sound/arm/pxa2xx-ac97.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/arm/pxa2xx-ac97.c b/sound/arm/pxa2xx-ac97.c index 490729799e59..71fbf8d7ee82 100644 --- a/sound/arm/pxa2xx-ac97.c +++ b/sound/arm/pxa2xx-ac97.c | |||
@@ -424,6 +424,7 @@ static struct platform_driver pxa2xx_ac97_driver = { | |||
424 | .resume = pxa2xx_ac97_resume, | 424 | .resume = pxa2xx_ac97_resume, |
425 | .driver = { | 425 | .driver = { |
426 | .name = "pxa2xx-ac97", | 426 | .name = "pxa2xx-ac97", |
427 | .owner = THIS_MODULE, | ||
427 | }, | 428 | }, |
428 | }; | 429 | }; |
429 | 430 | ||
@@ -443,3 +444,4 @@ module_exit(pxa2xx_ac97_exit); | |||
443 | MODULE_AUTHOR("Nicolas Pitre"); | 444 | MODULE_AUTHOR("Nicolas Pitre"); |
444 | MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip"); | 445 | MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip"); |
445 | MODULE_LICENSE("GPL"); | 446 | MODULE_LICENSE("GPL"); |
447 | MODULE_ALIAS("platform:pxa2xx-ac97"); | ||