[PATCH 01/22] orion5x: Replace comments with C99 initializers
Benjamin Stürz
benni at stuerz.xyz
Sun Mar 27 03:58:48 AEDT 2022
This replaces comments with C99's designated
initializers because the kernel supports them now.
Signed-off-by: Benjamin Stürz <benni at stuerz.xyz>
---
arch/arm/mach-orion5x/dns323-setup.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-orion5x/dns323-setup.c b/arch/arm/mach-orion5x/dns323-setup.c
index 87cb47220e82..d762248c6512 100644
--- a/arch/arm/mach-orion5x/dns323-setup.c
+++ b/arch/arm/mach-orion5x/dns323-setup.c
@@ -61,9 +61,9 @@
/* Exposed to userspace, do not change */
enum {
- DNS323_REV_A1, /* 0 */
- DNS323_REV_B1, /* 1 */
- DNS323_REV_C1, /* 2 */
+ DNS323_REV_A1 = 0,
+ DNS323_REV_B1 = 1,
+ DNS323_REV_C1 = 2,
};
--
2.35.1
More information about the Linuxppc-dev
mailing list