mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-27 20:07:09 +00:00
eeepc-laptop: rename _set and _get arguments in macro
The _set and _get arguments to the EEEPC_CREATE_SENSOR_ATTR() macro are confusingly named: _set should be _get and vice versa. Rename these arguments. Drop the trailing semicolon from that macro, while we're at it. Signed-off-by: Paul Bolle <pebolle@tiscali.nl> Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
This commit is contained in:
parent
c4960cf01f
commit
1ec9d39979
@ -1053,20 +1053,20 @@ static ssize_t show_sys_hwmon(int (*get)(void), char *buf)
|
|||||||
return sprintf(buf, "%d\n", get());
|
return sprintf(buf, "%d\n", get());
|
||||||
}
|
}
|
||||||
|
|
||||||
#define EEEPC_CREATE_SENSOR_ATTR(_name, _mode, _set, _get) \
|
#define EEEPC_CREATE_SENSOR_ATTR(_name, _mode, _get, _set) \
|
||||||
static ssize_t show_##_name(struct device *dev, \
|
static ssize_t show_##_name(struct device *dev, \
|
||||||
struct device_attribute *attr, \
|
struct device_attribute *attr, \
|
||||||
char *buf) \
|
char *buf) \
|
||||||
{ \
|
{ \
|
||||||
return show_sys_hwmon(_set, buf); \
|
return show_sys_hwmon(_get, buf); \
|
||||||
} \
|
} \
|
||||||
static ssize_t store_##_name(struct device *dev, \
|
static ssize_t store_##_name(struct device *dev, \
|
||||||
struct device_attribute *attr, \
|
struct device_attribute *attr, \
|
||||||
const char *buf, size_t count) \
|
const char *buf, size_t count) \
|
||||||
{ \
|
{ \
|
||||||
return store_sys_hwmon(_get, buf, count); \
|
return store_sys_hwmon(_set, buf, count); \
|
||||||
} \
|
} \
|
||||||
static DEVICE_ATTR(_name, _mode, show_##_name, store_##_name);
|
static DEVICE_ATTR(_name, _mode, show_##_name, store_##_name)
|
||||||
|
|
||||||
EEEPC_CREATE_SENSOR_ATTR(fan1_input, S_IRUGO, eeepc_get_fan_rpm, NULL);
|
EEEPC_CREATE_SENSOR_ATTR(fan1_input, S_IRUGO, eeepc_get_fan_rpm, NULL);
|
||||||
EEEPC_CREATE_SENSOR_ATTR(pwm1, S_IRUGO | S_IWUSR,
|
EEEPC_CREATE_SENSOR_ATTR(pwm1, S_IRUGO | S_IWUSR,
|
||||||
|
Loading…
Reference in New Issue
Block a user