mirror of
https://github.com/torvalds/linux.git
synced 2026-09-11 20:13:02 +02:00
hwmon: (mcp9982) Propagate one-shot polling errors
When a device is in standby, the driver starts a one-shot conversion and
polls the BUSY flag before reading temperature, alarm, or fault data.
The poll result is currently ignored. Therefore, a timeout or a
status-register read failure can be hidden by a later successful read,
causing stale data to be returned as valid.
Return the polling error before reading the requested attribute.
Fixes: e2fe950f34 ("hwmon: add support for MCP998X")
Cc: stable@vger.kernel.org
Signed-off-by: Nikhil Gurudasani <nikhilgurudasani314@gmail.com>
Link: https://patch.msgid.link/20260819180701.34797-1-nikhilgurudasani314@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
e317326d17
commit
9607c245ca
|
|
@ -395,6 +395,8 @@ static int mcp9982_read(struct device *dev, enum hwmon_sensor_types type, u32 at
|
|||
reg_status, !(reg_status & MCP9982_STATUS_BUSY),
|
||||
MCP9982_WAKE_UP_TIME_US,
|
||||
MCP9982_WAKE_UP_TIME_US * 10);
|
||||
if (ret)
|
||||
return ret;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user