Thread (48 messages) 48 messages, 18 authors, 2022-04-01

Re: [PATCH 02/22] s3c: Replace comments with C99 initializers

From: Joe Perches <joe@perches.com>
Date: 2022-03-26 19:44:59
Also in: linux-acpi, linux-edac, linux-gpio, linux-media, linux-pci, linux-rdma, linux-samsung-soc, linux-wireless, linuxppc-dev, lkml, netdev

On Sat, 2022-03-26 at 17:58 +0100, Benjamin Stürz wrote:
This replaces comments with C99's designated
initializers because the kernel supports them now.
[]
quoted hunk ↗ jump to hunk
diff --git a/arch/arm/mach-s3c/bast-irq.c b/arch/arm/mach-s3c/bast-irq.c
[]
quoted hunk ↗ jump to hunk
@@ -29,22 +29,22 @@
  * the irq is not implemented
 */
 static const unsigned char bast_pc104_irqmasks[] = {
-	0,   /* 0 */
-	0,   /* 1 */
-	0,   /* 2 */
-	1,   /* 3 */
-	0,   /* 4 */
-	2,   /* 5 */
-	0,   /* 6 */
-	4,   /* 7 */
-	0,   /* 8 */
-	0,   /* 9 */
-	8,   /* 10 */
-	0,   /* 11 */
-	0,   /* 12 */
-	0,   /* 13 */
-	0,   /* 14 */
-	0,   /* 15 */
+	[0]  = 0,
+	[1]  = 0,
+	[2]  = 0,
+	[3]  = 1,
+	[4]  = 0,
+	[5]  = 2,
+	[6]  = 0,
+	[7]  = 4,
+	[8]  = 0,
+	[9]  = 0,
+	[10] = 8,
+	[11] = 0,
+	[12] = 0,
+	[13] = 0,
+	[14] = 0,
+	[15] = 0,
 };
I don't find this better than the initial array.
 
 static const unsigned char bast_pc104_irqs[] = { 3, 5, 7, 10 };
For the same reason this array is just an array
without the specified indexing.

Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help