summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Groux <rgroux@sauron-mordor.net>2016-09-21 17:05:29 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-22 09:54:47 (GMT)
commit0c8d9c73e6c99efdd5f76e5cbfb90e553130e729 (patch)
tree7da7b236d4bc2d75408731f6896bed30bae79850
parent5a420d15d15b0eb46672578baa268675c63962f7 (diff)
downloadlinux-0c8d9c73e6c99efdd5f76e5cbfb90e553130e729.tar.xz
staging: greybus: audio_codec.c: space required before the open brace
Minor error spotted by checkpatch.pl in greybus space required before the open brace '{' Signed-off-by: Richard Groux <rgroux@sauron-mordor.net> Reviewed-by: Alex Elder <elder@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/greybus/audio_codec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/greybus/audio_codec.c b/drivers/staging/greybus/audio_codec.c
index 5ce2542..0e8e4e9 100644
--- a/drivers/staging/greybus/audio_codec.c
+++ b/drivers/staging/greybus/audio_codec.c
@@ -322,7 +322,7 @@ int gbaudio_module_update(struct gbaudio_codec_info *codec,
dev_dbg(module->dev, "%s:Module update %s sequence\n", w->name,
enable ? "Enable":"Disable");
- if ((w->id != snd_soc_dapm_aif_in) && (w->id != snd_soc_dapm_aif_out)){
+ if ((w->id != snd_soc_dapm_aif_in) && (w->id != snd_soc_dapm_aif_out)) {
dev_dbg(codec->dev, "No action required for %s\n", w->name);
return 0;
}