aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2015-01-27 22:44:27 -0500
committerMark Brown <broonie@kernel.org>2015-01-28 06:36:03 -0500
commit2f1a11e624d0e8f02282204adfc2a1d374d49fb5 (patch)
treed887998ae59c4a4f08737d72a68a01bbcef0375c
parent97bf6af1f928216fd6c5a66e8a57bfa95a659672 (diff)
ASoC: Fix warning with make xmldocs caused by soc-devres.c
This patch fix warning while "make xmldocs". Warning(.//sound/soc/soc-devres.c:70): No description found for parameter 'platform_drv' Warning(.//sound/soc/soc-devres.c:70): Excess function parameter 'platform' description in 'devm_snd_soc_register_platform' Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/soc-devres.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-devres.c b/sound/soc/soc-devres.c
index 057e5ef7dcce..a57921eeee81 100644
--- a/sound/soc/soc-devres.c
+++ b/sound/soc/soc-devres.c
@@ -60,7 +60,7 @@ static void devm_platform_release(struct device *dev, void *res)
60/** 60/**
61 * devm_snd_soc_register_platform - resource managed platform registration 61 * devm_snd_soc_register_platform - resource managed platform registration
62 * @dev: Device used to manage platform 62 * @dev: Device used to manage platform
63 * @platform: platform to register 63 * @platform_drv: platform to register
64 * 64 *
65 * Register a platform driver with automatic unregistration when the device is 65 * Register a platform driver with automatic unregistration when the device is
66 * unregistered. 66 * unregistered.