[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250716005553.52369-2-ignacio.pena87@gmail.com>
Date: Tue, 15 Jul 2025 20:55:51 -0400
From: Ignacio Peña <ignacio.pena87@...il.com>
To: dan.carpenter@...aro.org
Cc: gregkh@...uxfoundation.org,
linux-staging@...ts.linux.dev,
devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org,
Ignacio Peña <ignacio.pena87@...il.com>
Subject: [PATCH 1/3] staging: sm750fb: Fix const declaration for g_fbmode array
The g_fbmode array should be declared as const pointer to const
string as its contents never change.
---
drivers/staging/sm750fb/sm750.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/sm750fb/sm750.c b/drivers/staging/sm750fb/sm750.c
index 1d929aca3..d3bce107f 100644
--- a/drivers/staging/sm750fb/sm750.c
+++ b/drivers/staging/sm750fb/sm750.c
@@ -33,7 +33,7 @@
static int g_hwcursor = 1;
static int g_noaccel;
static int g_nomtrr;
-static const char *g_fbmode[] = {NULL, NULL};
+static const char *const g_fbmode[] = {NULL, NULL};
static const char *g_def_fbmode = "1024x768-32@60";
static char *g_settings;
static int g_dualview;
--
2.39.5 (Apple Git-154)
Powered by blists - more mailing lists