summaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-ds1374.c
diff options
context:
space:
mode:
authorSrikant Ritolia2016-11-29 12:04:37 +0100
committerAlexandre Belloni2016-12-07 16:34:43 +0100
commit01835fadf5eda4afdca5c0aa7a89e210ee45bec6 (patch)
treef3b0f494f0352e3aeb5ec39e38e92f2d500f6da1 /drivers/rtc/rtc-ds1374.c
parentrtc: twl: make driver DT only (diff)
downloadkernel-qcow2-linux-01835fadf5eda4afdca5c0aa7a89e210ee45bec6.tar.gz
kernel-qcow2-linux-01835fadf5eda4afdca5c0aa7a89e210ee45bec6.tar.xz
kernel-qcow2-linux-01835fadf5eda4afdca5c0aa7a89e210ee45bec6.zip
rtc: ds1374: Merge conditional + WARN_ON()
WARN_ON does both these things in one statement. Using a better pattern with WARN_ON(). Signed-off-by: Srikant Ritolia <s.ritolia@samsung.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc/rtc-ds1374.c')
-rw-r--r--drivers/rtc/rtc-ds1374.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-ds1374.c b/drivers/rtc/rtc-ds1374.c
index 3b3049c8c9e0..52429f0a57cc 100644
--- a/drivers/rtc/rtc-ds1374.c
+++ b/drivers/rtc/rtc-ds1374.c
@@ -89,10 +89,8 @@ static int ds1374_read_rtc(struct i2c_client *client, u32 *time,
int ret;
int i;
- if (nbytes > 4) {
- WARN_ON(1);
+ if (WARN_ON(nbytes > 4))
return -EINVAL;
- }
ret = i2c_smbus_read_i2c_block_data(client, reg, nbytes, buf);