diff mbox series

[leds] turris-omnia-mcu-interface.h: Move macro definitions outside of enums

Message ID 20241215211323.23364-1-kabel@kernel.org
State New
Headers show
Series [leds] turris-omnia-mcu-interface.h: Move macro definitions outside of enums | expand

Commit Message

Marek Behún Dec. 15, 2024, 9:13 p.m. UTC
Move the definitions of enumerator related macros outside of the
enumerator definitions.

Link: https://lore.kernel.org/linux-leds/20241212183357.GK7139@google.com/
Signed-off-by: Marek Behún <kabel@kernel.org>
---
 include/linux/turris-omnia-mcu-interface.h | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

Comments

Lee Jones Dec. 17, 2024, 2:51 p.m. UTC | #1
On Sun, 15 Dec 2024 22:13:23 +0100, Marek Behún wrote:
> Move the definitions of enumerator related macros outside of the
> enumerator definitions.
> 
> 

Applied, thanks!

[1/1] turris-omnia-mcu-interface.h: Move macro definitions outside of enums
      commit: 1c896113f04e34d0036ef506532d2e6cf77dd1e5

--
Lee Jones [李琼斯]
diff mbox series

Patch

diff --git a/include/linux/turris-omnia-mcu-interface.h b/include/linux/turris-omnia-mcu-interface.h
index 06c94e032c6f..38b45ab00053 100644
--- a/include/linux/turris-omnia-mcu-interface.h
+++ b/include/linux/turris-omnia-mcu-interface.h
@@ -241,16 +241,18 @@  enum omnia_int_e {
 
 enum omnia_cmd_led_mode_e {
 	OMNIA_CMD_LED_MODE_LED_MASK	= GENMASK(3, 0),
-#define OMNIA_CMD_LED_MODE_LED(_l)	FIELD_PREP(OMNIA_CMD_LED_MODE_LED_MASK, _l)
 	OMNIA_CMD_LED_MODE_USER		= BIT(4),
 };
 
+#define OMNIA_CMD_LED_MODE_LED(_l)	FIELD_PREP(OMNIA_CMD_LED_MODE_LED_MASK, _l)
+
 enum omnia_cmd_led_state_e {
 	OMNIA_CMD_LED_STATE_LED_MASK	= GENMASK(3, 0),
-#define OMNIA_CMD_LED_STATE_LED(_l)	FIELD_PREP(OMNIA_CMD_LED_STATE_LED_MASK, _l)
 	OMNIA_CMD_LED_STATE_ON		= BIT(4),
 };
 
+#define OMNIA_CMD_LED_STATE_LED(_l)	FIELD_PREP(OMNIA_CMD_LED_STATE_LED_MASK, _l)
+
 enum omnia_cmd_poweroff_e {
 	OMNIA_CMD_POWER_OFF_POWERON_BUTTON	= BIT(0),
 	OMNIA_CMD_POWER_OFF_MAGIC		= 0xdead,