aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/media/av7110/av7110_av.c
diff options
context:
space:
mode:
authorHusni Faiz <ahamedhusni73@gmail.com>2022-03-20 17:36:17 +0100
committerMauro Carvalho Chehab <mchehab@kernel.org>2022-05-13 11:02:18 +0200
commite673b25894eb4e52b73e9970ce80c7325de4a000 (patch)
treebad12808348e31705d1073ca22db9fdeb5934546 /drivers/staging/media/av7110/av7110_av.c
parentmedia: platform: return early if the iface is not handled (diff)
downloadlinux-dev-e673b25894eb4e52b73e9970ce80c7325de4a000.tar.xz
linux-dev-e673b25894eb4e52b73e9970ce80c7325de4a000.zip
media: av7110: fix switch indentation
This patch fixes "switch and case should be at the same indent" checkpatch error. Signed-off-by: Husni Faiz <ahamedhusni73@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/staging/media/av7110/av7110_av.c')
-rw-r--r--drivers/staging/media/av7110/av7110_av.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/staging/media/av7110/av7110_av.c b/drivers/staging/media/av7110/av7110_av.c
index 91f4866c7e59..1d42862e9669 100644
--- a/drivers/staging/media/av7110/av7110_av.c
+++ b/drivers/staging/media/av7110/av7110_av.c
@@ -770,22 +770,22 @@ static void p_to_t(u8 const *buf, long int length, u16 pid, u8 *counter,
if (length > 3 &&
buf[0] == 0x00 && buf[1] == 0x00 && buf[2] == 0x01)
switch (buf[3]) {
- case PROG_STREAM_MAP:
- case PRIVATE_STREAM2:
- case PROG_STREAM_DIR:
- case ECM_STREAM :
- case EMM_STREAM :
- case PADDING_STREAM :
- case DSM_CC_STREAM :
- case ISO13522_STREAM:
- case PRIVATE_STREAM1:
- case AUDIO_STREAM_S ... AUDIO_STREAM_E:
- case VIDEO_STREAM_S ... VIDEO_STREAM_E:
- pes_start = 1;
- break;
+ case PROG_STREAM_MAP:
+ case PRIVATE_STREAM2:
+ case PROG_STREAM_DIR:
+ case ECM_STREAM :
+ case EMM_STREAM :
+ case PADDING_STREAM :
+ case DSM_CC_STREAM :
+ case ISO13522_STREAM:
+ case PRIVATE_STREAM1:
+ case AUDIO_STREAM_S ... AUDIO_STREAM_E:
+ case VIDEO_STREAM_S ... VIDEO_STREAM_E:
+ pes_start = 1;
+ break;
- default:
- break;
+ default:
+ break;
}
while (c < length) {