public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers/rtc/rtc-jz4740.c: fix error check
@ 2011-03-30 16:12 Nicolas Kaiser
  2011-03-30 16:37 ` Lars-Peter Clausen
  0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Kaiser @ 2011-03-30 16:12 UTC (permalink / raw)
  To: Alessandro Zummo; +Cc: Lars-Peter Clausen, rtc-linux, linux-kernel

Checking 'rtc->irq < 0' doesn't work because 'rtc->irq' is unsigned.

Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
---
Untested.

 drivers/rtc/rtc-jz4740.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/rtc/rtc-jz4740.c b/drivers/rtc/rtc-jz4740.c
index b647363..ba91bc6 100644
--- a/drivers/rtc/rtc-jz4740.c
+++ b/drivers/rtc/rtc-jz4740.c
@@ -220,12 +220,13 @@ static int __devinit jz4740_rtc_probe(struct platform_device *pdev)
 	if (!rtc)
 		return -ENOMEM;
 
-	rtc->irq = platform_get_irq(pdev, 0);
-	if (rtc->irq < 0) {
+	ret = platform_get_irq(pdev, 0);
+	if (ret < 0) {
 		ret = -ENOENT;
 		dev_err(&pdev->dev, "Failed to get platform irq\n");
 		goto err_free;
 	}
+	rtc->irq = ret;
 
 	rtc->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 	if (!rtc->mem) {
-- 
1.7.3.4

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

end of thread, other threads:[~2011-03-31 14:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-30 16:12 [PATCH] drivers/rtc/rtc-jz4740.c: fix error check Nicolas Kaiser
2011-03-30 16:37 ` Lars-Peter Clausen
2011-03-30 18:27   ` [PATCH] drivers/rtc/rtc-jz4740.c: fix error check v2 Nicolas Kaiser
2011-03-31 14:59     ` [rtc-linux] " Wan ZongShun

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