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

Commit 0d3095e9 authored by Tony O'Brien's avatar Tony O'Brien Committed by Greg Kroah-Hartman
Browse files

hwmon: (adt7475) Display smoothing attributes in correct order



[ Upstream commit 5f8d1e3b6f9b5971f9c06d5846ce00c49e3a8d94 ]

Throughout the ADT7475 driver, attributes relating to the temperature
sensors are displayed in the order Remote 1, Local, Remote 2.  Make
temp_st_show() conform to this expectation so that values set by
temp_st_store() can be displayed using the correct attribute.

Fixes: 8f05bcc3 ("hwmon: (adt7475) temperature smoothing")
Signed-off-by: default avatarTony O'Brien <tony.obrien@alliedtelesis.co.nz>
Link: https://lore.kernel.org/r/20230222005228.158661-2-tony.obrien@alliedtelesis.co.nz


Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 674fce59
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -552,11 +552,11 @@ static ssize_t temp_st_show(struct device *dev, struct device_attribute *attr,
		val = data->enh_acoustics[0] & 0xf;
		break;
	case 1:
		val = (data->enh_acoustics[1] >> 4) & 0xf;
		val = data->enh_acoustics[1] & 0xf;
		break;
	case 2:
	default:
		val = data->enh_acoustics[1] & 0xf;
		val = (data->enh_acoustics[1] >> 4) & 0xf;
		break;
	}