[alsa-devel] [PATCH, RESEND] ALSA: ASoC: au1x: fix ac97c module build
17 Jul
2013
17 Jul
'13
9:49 p.m.
The recent conversion to module_platform_driver left a stray ampersand in there, preventing a build.
Cc: Mark Brown broonie@linaro.org Signed-off-by: Manuel Lauss manuel.lauss@gmail.com --- Against 3.11-rc1, added Mark to Cc.
sound/soc/au1x/ac97c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/au1x/ac97c.c b/sound/soc/au1x/ac97c.c index d6f7694..c8a2de1 100644 --- a/sound/soc/au1x/ac97c.c +++ b/sound/soc/au1x/ac97c.c @@ -341,7 +341,7 @@ static struct platform_driver au1xac97c_driver = { .remove = au1xac97c_drvremove, };
-module_platform_driver(&au1xac97c_driver); +module_platform_driver(au1xac97c_driver);
MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Au1000/1500/1100 AC97C ASoC driver");
--
1.8.3.2
4176
Age (days ago)
4176
Last active (days ago)
0 comments
1 participants
participants (1)
-
Manuel Lauss