linux-staging.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH] media: av7110: av7110_av: Fix Switch and Case Same Indent Style Error
@ 2022-02-25 15:56 Husni Faiz
  2022-03-07  7:28 ` Hans Verkuil
  2022-03-20 16:36 ` [PATCH v2 1/2] media: av7110: fix switch indentation Husni Faiz
  0 siblings, 2 replies; 8+ messages in thread
From: Husni Faiz @ 2022-02-25 15:56 UTC (permalink / raw)
  To: mchehab, gregkh; +Cc: Husni Faiz, linux-media, linux-staging, linux-kernel

This patch fixes "switch and case should be at the same indent"
checkpatch error.

Signed-off-by: Husni Faiz <ahamedhusni73@gmail.com>
---
 drivers/staging/media/av7110/av7110_av.c | 30 ++++++++++++------------
 1 file 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) {
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2022-04-16 19:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-25 15:56 [PATCH] media: av7110: av7110_av: Fix Switch and Case Same Indent Style Error Husni Faiz
2022-03-07  7:28 ` Hans Verkuil
2022-03-08 12:50   ` Ahamed Husni
2022-03-08 12:52     ` Hans Verkuil
2022-03-20 16:42       ` Ahamed Husni
2022-03-20 16:36 ` [PATCH v2 1/2] media: av7110: fix switch indentation Husni Faiz
2022-03-20 16:36   ` [PATCH v2 2/2] media: av7110: fix prohibited spaces in switch statement Husni Faiz
2022-04-16 19:09   ` [PATCH v2 1/2] media: av7110: fix switch indentation Ahamed Husni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).