diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-04-06 01:11:16 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-06 07:28:49 -0400 |
commit | 8abe05c6eb358967f16bce8a02c88d57c82cfbd6 (patch) | |
tree | 91f1d32af7e522cf24856b5d5640c0d7c7559b47 /sound | |
parent | 3fec6b6d5a53d37194735268b9e220f75ca37f19 (diff) |
ASoC: tegra: fix i2s compilation when !CONFIG_DEBUG_FS
Commit d4a2eca "ASoC: Tegra I2S: Remove dependency on pdev->id" changed
the prototype of tegra_i2s_debug_add, but didn't update the dummy inline
used when !CONFIG_DEBUG_FS. Fix that.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: <stable@vger.kernel.org> # 3.3
Diffstat (limited to 'sound')
-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 2d98c925c0aa..e53349912b2e 100644 --- a/sound/soc/tegra/tegra_i2s.c +++ b/sound/soc/tegra/tegra_i2s.c | |||
@@ -116,7 +116,7 @@ static void tegra_i2s_debug_remove(struct tegra_i2s *i2s) | |||
116 | debugfs_remove(i2s->debug); | 116 | debugfs_remove(i2s->debug); |
117 | } | 117 | } |
118 | #else | 118 | #else |
119 | static inline void tegra_i2s_debug_add(struct tegra_i2s *i2s, int id) | 119 | static inline void tegra_i2s_debug_add(struct tegra_i2s *i2s) |
120 | { | 120 | { |
121 | } | 121 | } |
122 | 122 | ||