aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-10-02 21:38:32 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-10-03 09:15:40 -0400
commitf6a74ced462a3acb8fc222176e690b157dc9e181 (patch)
tree136360346ef39e645ae2964fceaebd9c8ef1fad1 /sound/soc
parent1c6927f872990c43b73e0cd4ccdf1831725f3c4a (diff)
ASoC: txx9: Add __exit_p at necessary place
We have __exit annotation for txx9aclc_generic_remove(), thus add __devexit_p to wrap it. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/txx9/txx9aclc-generic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/txx9/txx9aclc-generic.c b/sound/soc/txx9/txx9aclc-generic.c
index 6770e7166be..9b5e283af51 100644
--- a/sound/soc/txx9/txx9aclc-generic.c
+++ b/sound/soc/txx9/txx9aclc-generic.c
@@ -62,7 +62,7 @@ static int __exit txx9aclc_generic_remove(struct platform_device *pdev)
62} 62}
63 63
64static struct platform_driver txx9aclc_generic_driver = { 64static struct platform_driver txx9aclc_generic_driver = {
65 .remove = txx9aclc_generic_remove, 65 .remove = __exit_p(txx9aclc_generic_remove),
66 .driver = { 66 .driver = {
67 .name = "txx9aclc-generic", 67 .name = "txx9aclc-generic",
68 .owner = THIS_MODULE, 68 .owner = THIS_MODULE,