mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 03:34:01 +01:00
Move all Symbolic macros together
This commit is contained in:
parent
059a598f26
commit
18961a0551
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue