diff options
author | Eduardo Valentin <edubezval@gmail.com> | 2016-11-08 08:08:59 +0300 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2016-11-23 05:06:12 +0300 |
commit | 72afe8e54974823454e4c10d4b29e486ea79f6b7 (patch) | |
tree | c32e2ba329f693fe2d4b79f983c888e0ae2b02e0 /drivers/thermal/thermal_core.c | |
parent | 09544da9e8255ef0f3aafd1e7da067dd2b521b40 (diff) | |
download | linux-72afe8e54974823454e4c10d4b29e486ea79f6b7.tar.xz |
thermal: core: match parenthesis on code alignment
Cosmetic change in the sysfs handling functions, as
recommended by checkpatch.pl.
Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal/thermal_core.c')
-rw-r--r-- | drivers/thermal/thermal_core.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c index e2c4fc4904d6..f66c19c7f201 100644 --- a/drivers/thermal/thermal_core.c +++ b/drivers/thermal/thermal_core.c @@ -897,7 +897,7 @@ trip_point_type_show(struct device *dev, struct device_attribute *attr, static ssize_t trip_point_temp_store(struct device *dev, struct device_attribute *attr, - const char *buf, size_t count) + const char *buf, size_t count) { struct thermal_zone_device *tz = to_thermal_zone(dev); int trip, ret; @@ -945,7 +945,7 @@ trip_point_temp_show(struct device *dev, struct device_attribute *attr, static ssize_t trip_point_hyst_store(struct device *dev, struct device_attribute *attr, - const char *buf, size_t count) + const char *buf, size_t count) { struct thermal_zone_device *tz = to_thermal_zone(dev); int trip, ret; @@ -975,7 +975,7 @@ trip_point_hyst_store(struct device *dev, struct device_attribute *attr, static ssize_t trip_point_hyst_show(struct device *dev, struct device_attribute *attr, - char *buf) + char *buf) { struct thermal_zone_device *tz = to_thermal_zone(dev); int trip, ret; @@ -994,7 +994,7 @@ trip_point_hyst_show(struct device *dev, struct device_attribute *attr, static ssize_t passive_store(struct device *dev, struct device_attribute *attr, - const char *buf, size_t count) + const char *buf, size_t count) { struct thermal_zone_device *tz = to_thermal_zone(dev); int state; @@ -1028,7 +1028,7 @@ passive_store(struct device *dev, struct device_attribute *attr, static ssize_t passive_show(struct device *dev, struct device_attribute *attr, - char *buf) + char *buf) { struct thermal_zone_device *tz = to_thermal_zone(dev); @@ -1037,7 +1037,7 @@ passive_show(struct device *dev, struct device_attribute *attr, static ssize_t policy_store(struct device *dev, struct device_attribute *attr, - const char *buf, size_t count) + const char *buf, size_t count) { struct thermal_zone_device *tz = to_thermal_zone(dev); char name[THERMAL_NAME_LENGTH]; @@ -1069,7 +1069,7 @@ available_policies_show(struct device *dev, struct device_attribute *devattr, static ssize_t emul_temp_store(struct device *dev, struct device_attribute *attr, - const char *buf, size_t count) + const char *buf, size_t count) { struct thermal_zone_device *tz = to_thermal_zone(dev); int ret = 0; |