rtc: pcf8523: return meaningful value for RTC_VL_READ
REG_CONTROL3_BLF indicates the battery is low and needs to be replaced soon. Link: https://lore.kernel.org/r/20191214220259.621996-6-alexandre.belloni@bootlin.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
af4273116d
commit
244cf8f0ed
|
@ -282,11 +282,11 @@ static int pcf8523_rtc_ioctl(struct device *dev, unsigned int cmd,
|
||||||
ret = pcf8523_voltage_low(client);
|
ret = pcf8523_voltage_low(client);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
if (ret)
|
||||||
|
ret = RTC_VL_BACKUP_LOW;
|
||||||
|
|
||||||
if (copy_to_user((void __user *)arg, &ret, sizeof(int)))
|
return put_user(ret, (unsigned int __user *)arg);
|
||||||
return -EFAULT;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
default:
|
default:
|
||||||
return -ENOIOCTLCMD;
|
return -ENOIOCTLCMD;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue