]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
firmware: arm_scmi: Support loop control in quirk code snippets
authorGeert Uytterhoeven <geert+renesas@glider.be>
Mon, 16 Mar 2026 15:34:40 +0000 (16:34 +0100)
committerSudeep Holla <sudeep.holla@kernel.org>
Tue, 17 Mar 2026 07:30:22 +0000 (07:30 +0000)
Each SCMI firmware quirk contains a code snippet, which handles the
quirk, and has full access to the surrounding context.  When this
context is (part of) a loop body, the code snippet may want to use loop
control statements like "break" and "continue".  Unfortunately the
SCMI_QUIRK() macro implementation contains a dummy loop, taking
precedence over any outer loops.  Hence quirk code cannot use loop
control statements, but has to resort to polluting the surrounding
context with a label, and use goto.

Fix this by replacing the "do { ... } while (0)" construct in the
SCMI_QUIRK() implementation by "({ ... })".

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Cristian Marussi <cristian.marussi@arm.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Message-Id: <51de914cddef8fa86c2e7dd5397e5df759c45464.1773675224.git.geert+renesas@glider.be>
Signed-off-by: Sudeep Holla <sudeep.holla@kernel.org>
drivers/firmware/arm_scmi/quirks.h

index a71fde85a5272aff471db1976934dc9c0fde9bf6..d8ba60b956522d046d1da43bbb6ac4ebe6a65fde 100644 (file)
  * named as _qn.
  */
 #define SCMI_QUIRK(_qn, _blk)                                          \
-       do {                                                            \
+       ({                                                              \
                if (static_branch_unlikely(&(scmi_quirk_ ## _qn)))      \
                        (_blk);                                         \
-       } while (0)
+       })
 
 void scmi_quirks_initialize(void);
 void scmi_quirks_enable(struct device *dev, const char *vend,
@@ -34,10 +34,10 @@ void scmi_quirks_enable(struct device *dev, const char *vend,
 #define DECLARE_SCMI_QUIRK(_qn)
 /* Force quirks compilation even when SCMI Quirks are disabled */
 #define SCMI_QUIRK(_qn, _blk)                                          \
-       do {                                                            \
+       ({                                                              \
                if (0)                                                  \
                        (_blk);                                         \
-       } while (0)
+       })
 
 static inline void scmi_quirks_initialize(void) { }
 static inline void scmi_quirks_enable(struct device *dev, const char *vend,