public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* linux-4.7-rc2/drivers/rtc/rtc-ds1685.c: 2 * bad if test ?
@ 2016-06-07 15:18 David Binderman
  2016-06-07 15:30 ` Alexandre Belloni
  0 siblings, 1 reply; 3+ messages in thread
From: David Binderman @ 2016-06-07 15:18 UTC (permalink / raw)
  To: kumba, a.zummo, alexandre.belloni, rtc-linux, linux-kernel,
	dcb314

Hello there,

1.

linux-4.7-rc2/drivers/rtc/rtc-ds1685.c:392]: (style) Redundant
condition: If '!(mday >= 1)', the comparison 'mday <= 31' is always
true.

Source code is

   if (!(mday >= 1) && (mday <= 31))

Maybe better code

   if (!((mday >= 1) && (mday <= 31)))

2.

linux-4.7-rc2/drivers/rtc/rtc-ds1685.c:464]: (style) Redundant
condition: If '!(mday >= 1)', the comparison 'mday <= 31' is always
true.

Duplicate. Also in the same file:

[drivers/rtc/rtc-ds1685.c:265]: (style) Variable 'ctrlb' is assigned a
value that is never used.
[drivers/rtc/rtc-ds1685.c:812]: (style) Variable 'ctrlc' is assigned a
value that is never used.


Regards

David Binderman

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-06-07 22:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-07 15:18 linux-4.7-rc2/drivers/rtc/rtc-ds1685.c: 2 * bad if test ? David Binderman
2016-06-07 15:30 ` Alexandre Belloni
2016-06-07 22:12   ` Joshua Kinard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox