mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
rtc: max31335: fix interrupt status reg
Fix the register value comparison in the `max31335_volatile_reg`
function for the interrupt status register.
MAX31335_STATUS1 macro definition corresponds to the actual
interrupt status register.
Fixes: dedaf03b99
("rtc: max31335: add driver support")
Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
Reviewed-by: Nuno Sa <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/20240219091616.24480-1-antoniu.miclaus@analog.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
544c42f798
commit
c12e67e076
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ static bool max31335_volatile_reg(struct device *dev, unsigned int reg)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
/* interrupt status register */
|
/* interrupt status register */
|
||||||
if (reg == MAX31335_INT_EN1_A1IE)
|
if (reg == MAX31335_STATUS1)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
/* temperature registers */
|
/* temperature registers */
|
||||||
|
|
Loading…
Reference in a new issue