aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-ds1374.c
diff options
context:
space:
mode:
authorSrikant Ritolia <s.ritolia@samsung.com>2016-11-29 11:04:37 +0000
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2016-12-07 16:34:43 +0100
commit01835fadf5eda4afdca5c0aa7a89e210ee45bec6 (patch)
treef3b0f494f0352e3aeb5ec39e38e92f2d500f6da1 /drivers/rtc/rtc-ds1374.c
parent1c02cbfec5c7754cb16456fcb26592a20781cdff (diff)
downloadlinux-01835fadf5eda4afdca5c0aa7a89e210ee45bec6.tar.gz
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 3b3049c8c9e04..52429f0a57cc2 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);