diff options
author | Marek Belisko <marek.belisko@open-nandra.com> | 2012-07-12 17:00:16 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-07-13 10:43:41 -0400 |
commit | 98b3cf1290d2d6fbc926dc410d3713c8244e7604 (patch) | |
tree | e70b1ad2e68f6d0644863d8583379dcad42b9ba2 /sound | |
parent | e4dd76788c7e5b27165890d712c8c4f6f0abd645 (diff) |
ASoC: dapm: Fix compilation warning
Fix following:
sound/soc/soc-dapm.c: In function ‘dapm_clock_event’:
sound/soc/soc-dapm.c:1021:1: warning: control reaches end of non-void function [-Wreturn-type]
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/soc-dapm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 4ba47aab9801..f7a13f720529 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c | |||
@@ -1019,6 +1019,7 @@ int dapm_clock_event(struct snd_soc_dapm_widget *w, | |||
1019 | return 0; | 1019 | return 0; |
1020 | } | 1020 | } |
1021 | #endif | 1021 | #endif |
1022 | return 0; | ||
1022 | } | 1023 | } |
1023 | EXPORT_SYMBOL_GPL(dapm_clock_event); | 1024 | EXPORT_SYMBOL_GPL(dapm_clock_event); |
1024 | 1025 | ||