dect
/
linux-2.6
Archived
13
0
Fork 0

[WATCHDOG] fix clk_get() error check

The return value of clk_get() should be checked by IS_ERR().

Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
Akinobu Mita 2006-12-19 17:51:44 +09:00 committed by Wim Van Sebroeck
parent 0b6dd8a640
commit 9cd446198e
2 changed files with 4 additions and 3 deletions

View File

@ -283,7 +283,8 @@ static int pnx4008_wdt_probe(struct platform_device *pdev)
wdt_base = (void __iomem *)IO_ADDRESS(res->start);
wdt_clk = clk_get(&pdev->dev, "wdt_ck");
if (!wdt_clk) {
if (IS_ERR(wdt_clk)) {
ret = PTR_ERR(wdt_clk);
release_resource(wdt_mem);
kfree(wdt_mem);
goto out;

View File

@ -393,9 +393,9 @@ static int s3c2410wdt_probe(struct platform_device *pdev)
}
wdt_clock = clk_get(&pdev->dev, "watchdog");
if (wdt_clock == NULL) {
if (IS_ERR(wdt_clock)) {
printk(KERN_INFO PFX "failed to find watchdog clock source\n");
ret = -ENOENT;
ret = PTR_ERR(wdt_clock);
goto err_irq;
}