mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 03:34:01 +01:00
Refactor: Buffer --> color_string
This commit is contained in:
parent
79eb89923e
commit
8ea156a95a
|
@ -400,30 +400,30 @@ static int set_color_region(const char *color_string, size_t size, u32 region)
|
|||
|
||||
static ssize_t set_color_left_fs(struct device *child,
|
||||
struct device_attribute *attr,
|
||||
const char *buffer, size_t size)
|
||||
const char *color_string, size_t size)
|
||||
{
|
||||
return set_color_region(buffer, size, REGION_LEFT);
|
||||
return set_color_region(color_string, size, REGION_LEFT);
|
||||
}
|
||||
|
||||
static ssize_t set_color_center_fs(struct device *child,
|
||||
struct device_attribute *attr,
|
||||
const char *buffer, size_t size)
|
||||
const char *color_string, size_t size)
|
||||
{
|
||||
return set_color_region(buffer, size, REGION_CENTER);
|
||||
return set_color_region(color_string, size, REGION_CENTER);
|
||||
}
|
||||
|
||||
static ssize_t set_color_right_fs(struct device *child,
|
||||
struct device_attribute *attr,
|
||||
const char *buffer, size_t size)
|
||||
const char *color_string, size_t size)
|
||||
{
|
||||
return set_color_region(buffer, size, REGION_RIGHT);
|
||||
return set_color_region(color_string, size, REGION_RIGHT);
|
||||
}
|
||||
|
||||
static ssize_t set_color_extra_fs(struct device *child,
|
||||
struct device_attribute *attr,
|
||||
const char *buffer, size_t size)
|
||||
const char *color_string, size_t size)
|
||||
{
|
||||
return set_color_region(buffer, size, REGION_EXTRA);
|
||||
return set_color_region(color_string, size, REGION_EXTRA);
|
||||
}
|
||||
|
||||
static void set_blinking_pattern(u8 blinkling_pattern)
|
||||
|
|
Loading…
Reference in a new issue