From 051abf552468d4b80c0ccf8c69667bfab672cec0 Mon Sep 17 00:00:00 2001 From: Michael McCormick Date: Thu, 22 Feb 2018 11:29:24 +1300 Subject: [PATCH] rtc: pcf85063: fix clearing bits in pcf85063_start_clock Bit clear operation was missing ~ Signed-off-by: Michael McCormick Signed-off-by: Alexandre Belloni --- drivers/rtc/rtc-pcf85063.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/rtc/rtc-pcf85063.c b/drivers/rtc/rtc-pcf85063.c index 3558433e8787..49bcbb3d4a69 100644 --- a/drivers/rtc/rtc-pcf85063.c +++ b/drivers/rtc/rtc-pcf85063.c @@ -70,7 +70,7 @@ static int pcf85063_start_clock(struct i2c_client *client, u8 ctrl1) s32 ret; /* start the clock */ - ctrl1 &= PCF85063_REG_CTRL1_STOP; + ctrl1 &= ~PCF85063_REG_CTRL1_STOP; ret = i2c_smbus_write_byte_data(client, PCF85063_REG_CTRL1, ctrl1); if (ret < 0) {