[U-Boot] [PATCH v1 2/3] rtc: m41t62: Break i2c_write() arguments to fix checkpatch warning

Lukasz Majewski lukma at denx.de
Wed Nov 21 22:43:51 UTC 2018


No functional change for this commit.

Signed-off-by: Lukasz Majewski <lukma at denx.de>
---

Changes in v1: None

 drivers/rtc/m41t62.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/rtc/m41t62.c b/drivers/rtc/m41t62.c
index 137438389d..cc230e2b78 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;
 	}
-- 
2.11.0



More information about the U-Boot mailing list