mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 03:34:01 +01:00
refactor: set_color_region() -> set_color_string_region()
This commit is contained in:
parent
06bb6801df
commit
27aafcf1fd
|
@ -373,7 +373,7 @@ static int set_color(u32 region, u32 color)
|
||||||
return tuxedo_evaluate_wmi_method(SET_KB_LED, cmd, NULL);
|
return tuxedo_evaluate_wmi_method(SET_KB_LED, cmd, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int set_color_region(const char *color_string, size_t size, u32 region)
|
static int set_color_string_region(const char *color_string, size_t size, u32 region)
|
||||||
{
|
{
|
||||||
u32 colorcode;
|
u32 colorcode;
|
||||||
int err = kstrtouint(color_string, 0, &colorcode);
|
int err = kstrtouint(color_string, 0, &colorcode);
|
||||||
|
@ -408,28 +408,28 @@ static ssize_t set_color_left_fs(struct device *child,
|
||||||
struct device_attribute *attr,
|
struct device_attribute *attr,
|
||||||
const char *color_string, size_t size)
|
const char *color_string, size_t size)
|
||||||
{
|
{
|
||||||
return set_color_region(color_string, size, REGION_LEFT);
|
return set_color_string_region(color_string, size, REGION_LEFT);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t set_color_center_fs(struct device *child,
|
static ssize_t set_color_center_fs(struct device *child,
|
||||||
struct device_attribute *attr,
|
struct device_attribute *attr,
|
||||||
const char *color_string, size_t size)
|
const char *color_string, size_t size)
|
||||||
{
|
{
|
||||||
return set_color_region(color_string, size, REGION_CENTER);
|
return set_color_string_region(color_string, size, REGION_CENTER);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t set_color_right_fs(struct device *child,
|
static ssize_t set_color_right_fs(struct device *child,
|
||||||
struct device_attribute *attr,
|
struct device_attribute *attr,
|
||||||
const char *color_string, size_t size)
|
const char *color_string, size_t size)
|
||||||
{
|
{
|
||||||
return set_color_region(color_string, size, REGION_RIGHT);
|
return set_color_string_region(color_string, size, REGION_RIGHT);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t set_color_extra_fs(struct device *child,
|
static ssize_t set_color_extra_fs(struct device *child,
|
||||||
struct device_attribute *attr,
|
struct device_attribute *attr,
|
||||||
const char *color_string, size_t size)
|
const char *color_string, size_t size)
|
||||||
{
|
{
|
||||||
return set_color_region(color_string, size, REGION_EXTRA);
|
return set_color_string_region(color_string, size, REGION_EXTRA);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void set_blinking_pattern(u8 blinkling_pattern)
|
static void set_blinking_pattern(u8 blinkling_pattern)
|
||||||
|
|
Loading…
Reference in a new issue