Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cfd1b99b authored by Linus Torvalds's avatar Linus Torvalds
Browse files
Pull hwmon fixes from Guenter Roeck:
 "More fallout from module tests and code inspection.

  Fixes to temperature limit write operations in adt7470 driver.  Also,
  dashes are not allowed in hwmon 'name' attributes.  Fix drivers where
  necessary"

* tag 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
  hwmon: (adt7470) Fix writes to temperature limit registers
  hwmon: (da9055) Don't use dash in the name attribute
  hwmon: (da9052) Don't use dash in the name attribute
parents 0bae49b2 de12d6f4
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -515,7 +515,7 @@ static ssize_t set_temp_min(struct device *dev,
		return -EINVAL;

	temp = DIV_ROUND_CLOSEST(temp, 1000);
	temp = clamp_val(temp, 0, 255);
	temp = clamp_val(temp, -128, 127);

	mutex_lock(&data->lock);
	data->temp_min[attr->index] = temp;
@@ -549,7 +549,7 @@ static ssize_t set_temp_max(struct device *dev,
		return -EINVAL;

	temp = DIV_ROUND_CLOSEST(temp, 1000);
	temp = clamp_val(temp, 0, 255);
	temp = clamp_val(temp, -128, 127);

	mutex_lock(&data->lock);
	data->temp_max[attr->index] = temp;
@@ -826,7 +826,7 @@ static ssize_t set_pwm_tmin(struct device *dev,
		return -EINVAL;

	temp = DIV_ROUND_CLOSEST(temp, 1000);
	temp = clamp_val(temp, 0, 255);
	temp = clamp_val(temp, -128, 127);

	mutex_lock(&data->lock);
	data->pwm_tmin[attr->index] = temp;
+1 −1
Original line number Diff line number Diff line
@@ -194,7 +194,7 @@ static ssize_t da9052_hwmon_show_name(struct device *dev,
				      struct device_attribute *devattr,
				      char *buf)
{
	return sprintf(buf, "da9052-hwmon\n");
	return sprintf(buf, "da9052\n");
}

static ssize_t show_label(struct device *dev,
+1 −1
Original line number Diff line number Diff line
@@ -204,7 +204,7 @@ static ssize_t da9055_hwmon_show_name(struct device *dev,
				      struct device_attribute *devattr,
				      char *buf)
{
	return sprintf(buf, "da9055-hwmon\n");
	return sprintf(buf, "da9055\n");
}

static ssize_t show_label(struct device *dev,