Arnd Bergmann
e698a51239
drivers/rtc/rtc-pcf8563.c: fix uninitialized use warning
...
gcc-4.9 found a potential condition under which the 'pending' variable
may be used uninitialized:
drivers/rtc/rtc-pcf8563.c: In function 'pcf8563_irq':
drivers/rtc/rtc-pcf8563.c:173:5: warning: 'pending' may be used uninitialized in this function [-Wmaybe-uninitialized]
This is because in the pcf8563_get_alarm_mode() function, we check any
nonzero return of pcf8563_read_block_data, but in the irq function we
only check for negative values, so a possible positive value does not
get detected if the compiler chooses not to inline the entire call
chain.
Checking for any non-zero value in the interrupt handler as well is just
as correct and lets the compiler know what we are doing, without needing
a bogus initialization.
Signed-off-by: Arnd Bergmann <arnd@arndb.de >
Cc: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com >
Cc: Alessandro Zummo <a.zummo@towertech.it >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2014-10-14 02:18:19 +02:00
..
2014-08-08 15:57:20 -07:00
2012-10-06 03:05:04 +09:00
2014-08-08 15:57:19 -07:00
2014-10-14 02:18:19 +02:00
2014-10-14 02:18:19 +02:00
2013-11-13 12:09:28 +09:00
2014-06-06 16:08:07 -07:00
2013-07-03 16:07:54 -07:00
2013-07-03 16:07:59 -07:00
2014-04-03 16:21:22 -07:00
2014-04-03 16:21:17 -07:00
2014-06-06 16:08:08 -07:00
2013-04-05 09:36:53 -07:00
2013-12-20 11:41:32 +01:00
2014-07-30 13:53:28 +02:00
2014-06-06 16:08:08 -07:00
2014-10-14 02:18:18 +02:00
2013-07-03 16:07:54 -07:00
2014-06-06 16:08:07 -07:00
2014-04-03 16:21:18 -07:00
2014-06-06 16:08:07 -07:00
2014-04-03 16:21:24 -07:00
2014-07-28 08:09:25 +01:00
2014-04-03 16:21:18 -07:00
2013-02-21 17:22:29 -08:00
2013-07-03 16:07:53 -07:00
2013-07-03 16:08:00 -07:00
2013-07-03 16:07:56 -07:00
2013-07-03 16:07:59 -07:00
2014-04-03 16:21:16 -07:00
2014-10-14 02:18:18 +02:00
2014-08-08 15:57:19 -07:00
2014-04-03 16:21:23 -07:00
2013-07-03 16:07:46 -07:00
2014-04-03 16:21:17 -07:00
2014-04-03 16:21:24 -07:00
2014-04-03 16:21:24 -07:00
2014-04-03 16:21:16 -07:00
2014-08-08 15:57:19 -07:00
2013-11-13 12:09:29 +09:00
2014-04-03 16:21:22 -07:00
2013-07-03 16:07:56 -07:00
2014-08-08 15:57:19 -07:00
2014-09-26 08:10:35 -07:00
2013-07-03 16:07:56 -07:00
2013-11-13 12:09:29 +09:00
2013-07-03 16:07:56 -07:00
2013-07-03 16:07:57 -07:00
2013-11-15 09:32:21 +09:00
2014-06-06 16:08:08 -07:00
2014-04-03 16:21:16 -07:00
2013-11-13 12:09:27 +09:00
2014-10-14 02:18:17 +02:00
2014-06-06 16:08:07 -07:00
2014-04-03 16:21:19 -07:00
2013-07-03 16:07:53 -07:00
2014-04-03 16:21:18 -07:00
2013-07-03 16:07:53 -07:00
2014-06-06 16:08:07 -07:00
2013-07-03 16:07:56 -07:00
2013-07-03 16:07:57 -07:00
2013-07-16 16:06:00 +09:30
2013-11-13 12:09:29 +09:00
2013-11-13 12:09:29 +09:00
2013-11-13 12:09:27 +09:00
2013-07-03 16:07:57 -07:00
2014-01-23 16:37:00 -08:00
2013-07-03 16:07:53 -07:00
2013-07-03 16:07:57 -07:00
2013-07-10 11:10:27 -07:00
2014-10-14 02:18:19 +02:00
2014-10-14 02:18:19 +02:00
2014-04-03 16:21:23 -07:00
2014-06-06 16:08:08 -07:00
2014-04-03 16:21:17 -07:00
2014-10-14 02:18:17 +02:00
2013-11-13 12:09:27 +09:00
2013-07-03 16:07:53 -07:00
2014-06-06 16:08:08 -07:00
2014-01-23 16:36:59 -08:00
2014-04-03 16:21:17 -07:00
2014-06-06 16:08:09 -07:00
2014-06-06 16:08:08 -07:00
2013-07-03 16:07:51 -07:00
2013-11-13 12:09:29 +09:00
2014-01-23 16:37:00 -08:00
2014-05-06 13:04:58 -07:00
2014-10-14 02:18:19 +02:00
2014-10-14 02:18:17 +02:00
2013-04-29 18:28:38 -07:00
2014-08-08 15:57:20 -07:00
2013-11-13 12:09:31 +09:00
2013-11-13 12:09:31 +09:00
2014-04-03 16:21:23 -07:00
2013-04-09 14:13:32 -04:00
2013-07-03 16:07:58 -07:00
2014-06-20 08:22:39 +08:00
2014-06-06 16:08:09 -07:00
2013-04-29 18:28:34 -07:00
2013-07-03 16:07:55 -07:00
2014-10-14 02:18:18 +02:00
2013-07-03 16:07:52 -07:00
2013-07-03 16:07:58 -07:00
2013-11-13 12:09:29 +09:00
2013-05-07 18:38:26 -07:00
2014-04-03 16:21:24 -07:00
2013-07-03 16:07:58 -07:00
2014-04-03 16:21:18 -07:00
2014-01-23 16:37:00 -08:00
2014-10-14 02:18:17 +02:00
2013-04-19 13:51:25 +02:00
2014-08-29 16:28:16 -07:00
2013-04-29 18:28:38 -07:00
2014-06-06 16:08:09 -07:00
2013-11-13 12:09:30 +09:00
2014-04-03 16:21:19 -07:00
2013-11-13 12:09:30 +09:00
2014-04-03 16:21:18 -07:00
2013-07-03 16:07:58 -07:00
2014-04-03 16:21:24 -07:00
2013-11-13 12:09:30 +09:00
2013-07-03 16:07:58 -07:00
2014-09-19 12:39:19 +02:00
2014-04-03 16:21:21 -07:00
2013-07-29 13:10:58 -07:00
2013-05-18 11:57:07 +02:00
2014-04-03 16:21:16 -07:00
2013-07-03 16:07:53 -07:00
2013-06-12 16:29:45 -07:00
2014-08-08 15:57:20 -07:00
2013-07-03 16:07:58 -07:00
2014-01-23 16:36:59 -08:00
2014-04-03 16:21:24 -07:00
2013-11-13 12:09:30 +09:00
2014-01-23 16:36:59 -08:00
2014-04-03 16:21:19 -07:00
2013-07-03 16:07:59 -07:00
2013-04-29 18:28:32 -07:00
2014-04-03 16:21:16 -07:00
2014-06-06 16:08:06 -07:00
2013-01-15 18:16:06 -08:00