Commit 80ba9363 authored by Alexandre Belloni's avatar Alexandre Belloni
Browse files

rtc: ds1672: remove unnecessary check



The rtc pointer is already checked earlier, it is not necessary to check it
again.

Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Link: https://lore.kernel.org/r/20190818215232.17320-1-alexandre.belloni@bootlin.com


Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent 44c638ce
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -128,9 +128,6 @@ static int ds1672_probe(struct i2c_client *client,
	if (err)
		return err;

	if (IS_ERR(rtc))
		return PTR_ERR(rtc);

	i2c_set_clientdata(client, rtc);

	return 0;