diff options
author | Stephen Warren <swarren@nvidia.com> | 2011-05-16 16:19:27 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-05-20 06:20:13 -0400 |
commit | 0dfe8da4921fdae6b9c77e320731e490d4b15a99 (patch) | |
tree | afca6ade17d9ffbb2144a196ae8e499e0c2f2a83 | |
parent | 6ae759e889d9fd1733f4392f5083ac8c899253c5 (diff) |
ASoC: Tegra: Fix compile when debugfs not enabled
The prototype of the inline dummy version of tegra_i2s_debug_add
was not consistent with the real version.
Reported-by: Rhyland-Klein <rklein@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | sound/soc/tegra/tegra_i2s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/tegra/tegra_i2s.c b/sound/soc/tegra/tegra_i2s.c index 4f5e2c90b020..6b817e20548c 100644 --- a/sound/soc/tegra/tegra_i2s.c +++ b/sound/soc/tegra/tegra_i2s.c | |||
@@ -114,7 +114,7 @@ static void tegra_i2s_debug_remove(struct tegra_i2s *i2s) | |||
114 | debugfs_remove(i2s->debug); | 114 | debugfs_remove(i2s->debug); |
115 | } | 115 | } |
116 | #else | 116 | #else |
117 | static inline void tegra_i2s_debug_add(struct tegra_i2s *i2s) | 117 | static inline void tegra_i2s_debug_add(struct tegra_i2s *i2s, int id) |
118 | { | 118 | { |
119 | } | 119 | } |
120 | 120 | ||