Commit c37b6430 authored by Alexandre Belloni's avatar Alexandre Belloni

rtc: rv3028: remove useless warning messages

Remove voltage low messages as userspace has a proper way to get the
information and react on it.
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Link: https://lore.kernel.org/r/20210126221435.2152339-2-alexandre.belloni@bootlin.com
parent f007c479
...@@ -265,9 +265,6 @@ static irqreturn_t rv3028_handle_irq(int irq, void *dev_id) ...@@ -265,9 +265,6 @@ static irqreturn_t rv3028_handle_irq(int irq, void *dev_id)
return IRQ_NONE; return IRQ_NONE;
} }
if (status & RV3028_STATUS_PORF)
dev_warn(&rv3028->rtc->dev, "Voltage low, data loss detected.\n");
status &= ~RV3028_STATUS_PORF; status &= ~RV3028_STATUS_PORF;
if (status & RV3028_STATUS_TF) { if (status & RV3028_STATUS_TF) {
...@@ -313,10 +310,8 @@ static int rv3028_get_time(struct device *dev, struct rtc_time *tm) ...@@ -313,10 +310,8 @@ static int rv3028_get_time(struct device *dev, struct rtc_time *tm)
if (ret < 0) if (ret < 0)
return ret; return ret;
if (status & RV3028_STATUS_PORF) { if (status & RV3028_STATUS_PORF)
dev_warn(dev, "Voltage low, data is invalid.\n");
return -EINVAL; return -EINVAL;
}
ret = regmap_bulk_read(rv3028->regmap, RV3028_SEC, date, sizeof(date)); ret = regmap_bulk_read(rv3028->regmap, RV3028_SEC, date, sizeof(date));
if (ret) if (ret)
...@@ -828,9 +823,6 @@ static int rv3028_probe(struct i2c_client *client) ...@@ -828,9 +823,6 @@ static int rv3028_probe(struct i2c_client *client)
if (ret < 0) if (ret < 0)
return ret; return ret;
if (status & RV3028_STATUS_PORF)
dev_warn(&client->dev, "Voltage low, data loss detected.\n");
if (status & RV3028_STATUS_AF) if (status & RV3028_STATUS_AF)
dev_warn(&client->dev, "An alarm may have been missed.\n"); dev_warn(&client->dev, "An alarm may have been missed.\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment