From 18961a05517347023b843edf1d9365a88ddcd76f Mon Sep 17 00:00:00 2001 From: Richard Sailer Date: Sun, 24 Nov 2019 12:35:08 +0100 Subject: [PATCH] Move all Symbolic macros together --- src/tuxedo_keyboard.c | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/src/tuxedo_keyboard.c b/src/tuxedo_keyboard.c index ebd98b8..a4315af 100644 --- a/src/tuxedo_keyboard.c +++ b/src/tuxedo_keyboard.c @@ -65,6 +65,23 @@ MODULE_VERSION("2.0.0"); #define COLOR_CYAN 0x00FFFF #define COLOR_WHITE 0xFFFFFF + +#define KB_COLOR_DEFAULT COLOR_WHITE // Default Color: White +#define DEFAULT_BLINKING_PATTERN 0 + +// Submethod IDs for the CLEVO_GET WMI method +#define GET_EVENT 0x01 +#define GET_AP 0x46 +#define SET_KB_LED 0x67 + +// WMI Codes +#define WMI_CODE_DECREASE_BACKLIGHT 0x81 +#define WMI_CODE_INCREASE_BACKLIGHT 0x82 +#define WMI_CODE_NEXT_BLINKING_PATTERN 0x83 +#define WMI_CODE_TOGGLE_STATE 0x9F + +#define STEP_BRIGHTNESS_STEP 25 + struct color_t { u32 code; char* name; @@ -98,25 +115,6 @@ struct blinking_pattern_t { const char *const name; }; - - -#define KB_COLOR_DEFAULT COLOR_WHITE // Default Color White -#define DEFAULT_BLINKING_PATTERN 0 - -// Method IDs for CLEVO_GET -#define GET_EVENT 0x01 -#define GET_AP 0x46 -#define SET_KB_LED 0x67 - -// WMI Codes -#define WMI_CODE_DECREASE_BACKLIGHT 0x81 -#define WMI_CODE_INCREASE_BACKLIGHT 0x82 -#define WMI_CODE_NEXT_BLINKING_PATTERN 0x83 -#define WMI_CODE_TOGGLE_STATE 0x9F - -#define STEP_BRIGHTNESS_STEP 25 - - struct platform_device *tuxedo_platform_device; static struct input_dev *tuxedo_input_device;