diff options
author | Pankaj Dubey <pankaj.dubey@samsung.com> | 2014-04-03 17:50:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-03 19:21:24 -0400 |
commit | ebe753357ecd10a6dc521dc89f2bfea6c0ee0ca2 (patch) | |
tree | 28f84d6a842762316b7c1214545924332dfe91df /drivers/rtc | |
parent | dc9d8887408ac3dfd907b826c5dfdfe953c21a0f (diff) |
drivers/rtc/rtc-s3c.c: remove NO_IRQ macro
NO_IRQ may be defined as '(unsigned int) -1' in some architectures (arm,
sh ...), and either may not be defined in some architectures (arm64) which
can enable RTC_DRV_S3C.
Also since platform_get_irq returns err-code in case of any error, we do
not need to intialize s3c_rtc_alarmno and s3c_rtc_tickno.
Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.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>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-s3c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-s3c.c b/drivers/rtc/rtc-s3c.c index c4cde9c08f1f..4958a363b2c7 100644 --- a/drivers/rtc/rtc-s3c.c +++ b/drivers/rtc/rtc-s3c.c | |||
@@ -48,8 +48,8 @@ struct s3c_rtc_drv_data { | |||
48 | 48 | ||
49 | static struct clk *rtc_clk; | 49 | static struct clk *rtc_clk; |
50 | static void __iomem *s3c_rtc_base; | 50 | static void __iomem *s3c_rtc_base; |
51 | static int s3c_rtc_alarmno = NO_IRQ; | 51 | static int s3c_rtc_alarmno; |
52 | static int s3c_rtc_tickno = NO_IRQ; | 52 | static int s3c_rtc_tickno; |
53 | static enum s3c_cpu_type s3c_rtc_cpu_type; | 53 | static enum s3c_cpu_type s3c_rtc_cpu_type; |
54 | 54 | ||
55 | static DEFINE_SPINLOCK(s3c_rtc_pie_lock); | 55 | static DEFINE_SPINLOCK(s3c_rtc_pie_lock); |