diff options
Diffstat (limited to 'drivers/rtc/rtc-ds1374.c')
-rw-r--r-- | drivers/rtc/rtc-ds1374.c | 4 |
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, | |||
89 | int ret; | 89 | int ret; |
90 | int i; | 90 | int i; |
91 | 91 | ||
92 | if (nbytes > 4) { | 92 | if (WARN_ON(nbytes > 4)) |
93 | WARN_ON(1); | ||
94 | return -EINVAL; | 93 | return -EINVAL; |
95 | } | ||
96 | 94 | ||
97 | ret = i2c_smbus_read_i2c_block_data(client, reg, nbytes, buf); | 95 | ret = i2c_smbus_read_i2c_block_data(client, reg, nbytes, buf); |
98 | 96 | ||