Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a27c7bf6 authored by Alexandre Belloni's avatar Alexandre Belloni
Browse files

rtc: rx8025: fix rx8025_init_client()



rx8025_init_client is modifying ctrl[0] and writing it to RX8025_REG_CTRL2
but ctrl[0] is actually RX8025_REG_CTRL1.

Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
parent 8a06513d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -263,7 +263,7 @@ static int rx8025_init_client(struct i2c_client *client)
		need_clear = 1;

	if (need_clear) {
		ctrl2 = ctrl[0];
		ctrl2 = ctrl[1];
		ctrl2 &= ~(RX8025_BIT_CTRL2_PON | RX8025_BIT_CTRL2_VDET |
			   RX8025_BIT_CTRL2_CTFG | RX8025_BIT_CTRL2_WAFG |
			   RX8025_BIT_CTRL2_DAFG);