diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-11-16 16:06:35 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-11-17 04:08:31 +0100 |
commit | 812fb75d977efb0257fe41700e6f8e04900ab27c (patch) | |
tree | 0af7ed545c95b8f57b04cb6b4b07a12e64e4a2c8 /sound | |
parent | ASoC: tlv320dac33: clean up indentation, remove extraneous tab (diff) | |
download | linux-812fb75d977efb0257fe41700e6f8e04900ab27c.tar.xz linux-812fb75d977efb0257fe41700e6f8e04900ab27c.zip |
ASoC: arizona: fix indentation issue with return statement
The return statement is indented incorrectly. Fix this by adding in
the missing tab.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm8998.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8998.c b/sound/soc/codecs/wm8998.c index 61294c787f27..409bed30a4e4 100644 --- a/sound/soc/codecs/wm8998.c +++ b/sound/soc/codecs/wm8998.c @@ -60,7 +60,7 @@ static int wm8998_asrc_ev(struct snd_soc_dapm_widget *w, dev_warn(component->dev, "Unsupported ASRC rate1 (%s)\n", arizona_sample_rate_val_to_name(val)); - return -EINVAL; + return -EINVAL; } break; default: |