From: Lukasz Majewski Date: Thu, 22 Nov 2018 13:54:32 +0000 (+0100) Subject: rtc: m41t62: Break i2c_write() arguments to fix checkpatch warning X-Git-Tag: v2019.01-rc1~11^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d3df956fbe8e53954c8649c5279d59b44a9bd51;p=platform%2Fkernel%2Fu-boot.git rtc: m41t62: Break i2c_write() arguments to fix checkpatch warning No functional change for this commit. Signed-off-by: Lukasz Majewski Reviewed-by: Stefan Roese --- diff --git a/drivers/rtc/m41t62.c b/drivers/rtc/m41t62.c index 1374383..cc230e2 100644 --- a/drivers/rtc/m41t62.c +++ b/drivers/rtc/m41t62.c @@ -108,7 +108,8 @@ int rtc_set(struct rtc_time *tm) /* assume 20YY not 19YY */ buf[M41T62_REG_YEAR] = bin2bcd(tm->tm_year % 100); - if (i2c_write(CONFIG_SYS_I2C_RTC_ADDR, 0, 1, buf, M41T62_DATETIME_REG_SIZE)) { + if (i2c_write(CONFIG_SYS_I2C_RTC_ADDR, 0, 1, buf, + M41T62_DATETIME_REG_SIZE)) { printf("I2C write failed in %s()\n", __func__); return -1; }