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

Commit b0c57b59 authored by Robert Kmiec's avatar Robert Kmiec Committed by Linus Torvalds
Browse files

drivers/rtc/rtc-pcf8563.c: simplify return from function



This commit does not change any logic here.  It just makes the code easier
to read.

This is how it looked like:
If err != 0 return err;
else return 0;

Signed-off-by: default avatarRobert Kmiec <robert.r.kmiec@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6e54abac
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -246,7 +246,6 @@ static int pcf8563_get_datetime(struct i2c_client *client, struct rtc_time *tm)
static int pcf8563_set_datetime(struct i2c_client *client, struct rtc_time *tm)
{
	struct pcf8563 *pcf8563 = i2c_get_clientdata(client);
	int err;
	unsigned char buf[9];

	dev_dbg(&client->dev, "%s: secs=%d, mins=%d, hours=%d, "
@@ -272,12 +271,8 @@ static int pcf8563_set_datetime(struct i2c_client *client, struct rtc_time *tm)

	buf[PCF8563_REG_DW] = tm->tm_wday & 0x07;

	err = pcf8563_write_block_data(client, PCF8563_REG_SC,
	return pcf8563_write_block_data(client, PCF8563_REG_SC,
				9 - PCF8563_REG_SC, buf + PCF8563_REG_SC);
	if (err)
		return err;

	return 0;
}

#ifdef CONFIG_RTC_INTF_DEV