* [PATCH] platform/x86: msi-ec: Fix the build
@ 2023-08-05 8:10 Jean Delvare
2023-08-09 19:59 ` Hans de Goede
2023-09-06 15:49 ` Andreas Herrmann
0 siblings, 2 replies; 3+ messages in thread
From: Jean Delvare @ 2023-08-05 8:10 UTC (permalink / raw)
To: platform-driver-x86
Cc: LKML, Nikita, "Kravets <teackot", Hans de Goede,
Mark Gross
The msi-ec driver fails to build for me (gcc 7.5):
CC [M] drivers/platform/x86/msi-ec.o
drivers/platform/x86/msi-ec.c:72:6: error: initializer element is not constant
{ SM_ECO_NAME, 0xc2 },
^~~~~~~~~~~
drivers/platform/x86/msi-ec.c:72:6: note: (near initialization for ‘CONF0.shift_mode.modes[0].name’)
drivers/platform/x86/msi-ec.c:73:6: error: initializer element is not constant
{ SM_COMFORT_NAME, 0xc1 },
^~~~~~~~~~~~~~~
drivers/platform/x86/msi-ec.c:73:6: note: (near initialization for ‘CONF0.shift_mode.modes[1].name’)
drivers/platform/x86/msi-ec.c:74:6: error: initializer element is not constant
{ SM_SPORT_NAME, 0xc0 },
^~~~~~~~~~~~~
drivers/platform/x86/msi-ec.c:74:6: note: (near initialization for ‘CONF0.shift_mode.modes[2].name’)
(...)
Don't try to be smart, just use defines for the constant strings. The
compiler will recognize it's the same string and will store it only
once in the data section anyway.
Signed-off-by: Jean Delvare <jdelvare@suse.de>
Fixes: 392cacf2aa10 ("platform/x86: Add new msi-ec driver")
Cc: stable@vger.kernel.org
Cc: Nikita Kravets <teackot@gmail.com>
Cc: Hans de Goede <hdegoede@redhat.com>
Cc: Mark Gross <markgross@kernel.org>
---
drivers/platform/x86/msi-ec.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
--- linux-6.4.orig/drivers/platform/x86/msi-ec.c
+++ linux-6.4/drivers/platform/x86/msi-ec.c
@@ -27,15 +27,15 @@
#include <linux/seq_file.h>
#include <linux/string.h>
-static const char *const SM_ECO_NAME = "eco";
-static const char *const SM_COMFORT_NAME = "comfort";
-static const char *const SM_SPORT_NAME = "sport";
-static const char *const SM_TURBO_NAME = "turbo";
+#define SM_ECO_NAME "eco"
+#define SM_COMFORT_NAME "comfort"
+#define SM_SPORT_NAME "sport"
+#define SM_TURBO_NAME "turbo"
-static const char *const FM_AUTO_NAME = "auto";
-static const char *const FM_SILENT_NAME = "silent";
-static const char *const FM_BASIC_NAME = "basic";
-static const char *const FM_ADVANCED_NAME = "advanced";
+#define FM_AUTO_NAME "auto"
+#define FM_SILENT_NAME "silent"
+#define FM_BASIC_NAME "basic"
+#define FM_ADVANCED_NAME "advanced"
static const char * const ALLOWED_FW_0[] __initconst = {
"14C1EMS1.012",
--
Jean Delvare
SUSE L3 Support
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] platform/x86: msi-ec: Fix the build
2023-08-05 8:10 [PATCH] platform/x86: msi-ec: Fix the build Jean Delvare
@ 2023-08-09 19:59 ` Hans de Goede
2023-09-06 15:49 ` Andreas Herrmann
1 sibling, 0 replies; 3+ messages in thread
From: Hans de Goede @ 2023-08-09 19:59 UTC (permalink / raw)
To: Jean Delvare, platform-driver-x86; +Cc: LKML, Mark Gross, Nikita Kravets
Hi,
On 8/5/23 10:10, Jean Delvare wrote:
> The msi-ec driver fails to build for me (gcc 7.5):
>
> CC [M] drivers/platform/x86/msi-ec.o
> drivers/platform/x86/msi-ec.c:72:6: error: initializer element is not constant
> { SM_ECO_NAME, 0xc2 },
> ^~~~~~~~~~~
> drivers/platform/x86/msi-ec.c:72:6: note: (near initialization for ‘CONF0.shift_mode.modes[0].name’)
> drivers/platform/x86/msi-ec.c:73:6: error: initializer element is not constant
> { SM_COMFORT_NAME, 0xc1 },
> ^~~~~~~~~~~~~~~
> drivers/platform/x86/msi-ec.c:73:6: note: (near initialization for ‘CONF0.shift_mode.modes[1].name’)
> drivers/platform/x86/msi-ec.c:74:6: error: initializer element is not constant
> { SM_SPORT_NAME, 0xc0 },
> ^~~~~~~~~~~~~
> drivers/platform/x86/msi-ec.c:74:6: note: (near initialization for ‘CONF0.shift_mode.modes[2].name’)
> (...)
>
> Don't try to be smart, just use defines for the constant strings. The
> compiler will recognize it's the same string and will store it only
> once in the data section anyway.
>
> Signed-off-by: Jean Delvare <jdelvare@suse.de>
> Fixes: 392cacf2aa10 ("platform/x86: Add new msi-ec driver")
> Cc: stable@vger.kernel.org
> Cc: Nikita Kravets <teackot@gmail.com>
> Cc: Hans de Goede <hdegoede@redhat.com>
> Cc: Mark Gross <markgross@kernel.org>
Thank you for your patch, I've applied this patch to my fixes
branch:
https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=fixes
I will include this patch in my next fixes pull-req to Linus
for the current kernel development cycle.
Regards,
Hans
> ---
> drivers/platform/x86/msi-ec.c | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
> --- linux-6.4.orig/drivers/platform/x86/msi-ec.c
> +++ linux-6.4/drivers/platform/x86/msi-ec.c
> @@ -27,15 +27,15 @@
> #include <linux/seq_file.h>
> #include <linux/string.h>
>
> -static const char *const SM_ECO_NAME = "eco";
> -static const char *const SM_COMFORT_NAME = "comfort";
> -static const char *const SM_SPORT_NAME = "sport";
> -static const char *const SM_TURBO_NAME = "turbo";
> +#define SM_ECO_NAME "eco"
> +#define SM_COMFORT_NAME "comfort"
> +#define SM_SPORT_NAME "sport"
> +#define SM_TURBO_NAME "turbo"
>
> -static const char *const FM_AUTO_NAME = "auto";
> -static const char *const FM_SILENT_NAME = "silent";
> -static const char *const FM_BASIC_NAME = "basic";
> -static const char *const FM_ADVANCED_NAME = "advanced";
> +#define FM_AUTO_NAME "auto"
> +#define FM_SILENT_NAME "silent"
> +#define FM_BASIC_NAME "basic"
> +#define FM_ADVANCED_NAME "advanced"
>
> static const char * const ALLOWED_FW_0[] __initconst = {
> "14C1EMS1.012",
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] platform/x86: msi-ec: Fix the build
2023-08-05 8:10 [PATCH] platform/x86: msi-ec: Fix the build Jean Delvare
2023-08-09 19:59 ` Hans de Goede
@ 2023-09-06 15:49 ` Andreas Herrmann
1 sibling, 0 replies; 3+ messages in thread
From: Andreas Herrmann @ 2023-09-06 15:49 UTC (permalink / raw)
To: Jean Delvare
Cc: platform-driver-x86, LKML, Nikita Kravets, Hans de Goede,
Mark Gross
On Sat, Aug 05, 2023 at 10:10:10AM +0200, Jean Delvare wrote:
> The msi-ec driver fails to build for me (gcc 7.5):
FWIW.
The driver builds under TW with gcc 13.x.
I suppose that this issue was fixed in gcc 8.
I am currently double checking this.
PS: You had an odd email-address in CC:
(Nikita@imap2.suse-dmz.suse.de).
--
Regards,
Andreas
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nürnberg, Germany
GF: Ivo Totev, Andrew McDonald, Werner Knoblich
(HRB 36809, AG Nürnberg)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-09-06 15:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-05 8:10 [PATCH] platform/x86: msi-ec: Fix the build Jean Delvare
2023-08-09 19:59 ` Hans de Goede
2023-09-06 15:49 ` Andreas Herrmann
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).