diff options
author | Richard Groux <rgroux@sauron-mordor.net> | 2016-09-21 19:05:29 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-22 11:54:47 +0200 |
commit | 0c8d9c73e6c99efdd5f76e5cbfb90e553130e729 (patch) | |
tree | 7da7b236d4bc2d75408731f6896bed30bae79850 /drivers | |
parent | 5a420d15d15b0eb46672578baa268675c63962f7 (diff) | |
download | linux-0c8d9c73e6c99efdd5f76e5cbfb90e553130e729.tar.gz linux-0c8d9c73e6c99efdd5f76e5cbfb90e553130e729.tar.bz2 linux-0c8d9c73e6c99efdd5f76e5cbfb90e553130e729.zip |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/greybus/audio_codec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/greybus/audio_codec.c b/drivers/staging/greybus/audio_codec.c index 5ce2542a2fa0..0e8e4e96252f 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; } |