diff options
author | Daniel W. S. Almeida <[email protected]> | 2019-11-12 20:54:45 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2020-01-08 11:45:50 +0100 |
commit | c12495132d41004aa63c3a6d79ca0c7d1b13604d (patch) | |
tree | 77c4f3aaa8e30d4c299a0257667356672e4aeebd | |
parent | f19dfd26fb3e4aa96e7e39f335ffcef42c055f8f (diff) |
media: au8522: improve formatting
This patch fixes the following scripts/checkpatch.pl errors:
ERROR: space required before the open parenthesis '('
+ switch(input) {
Suggested-by: Shuah Khan <[email protected]>
Signed-off-by: Daniel W. S. Almeida <[email protected]>
Signed-off-by: Sean Young <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | drivers/media/dvb-frontends/au8522_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/au8522_decoder.c b/drivers/media/dvb-frontends/au8522_decoder.c index c1717dde874b..8cdca051e51b 100644 --- a/drivers/media/dvb-frontends/au8522_decoder.c +++ b/drivers/media/dvb-frontends/au8522_decoder.c @@ -562,7 +562,7 @@ static int au8522_s_video_routing(struct v4l2_subdev *sd, { struct au8522_state *state = to_state(sd); - switch(input) { + switch (input) { case AU8522_COMPOSITE_CH1: case AU8522_SVIDEO_CH13: case AU8522_COMPOSITE_CH4_SIF: |