Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 41410
b: refs/heads/master
c: 58c6570
h: refs/heads/master
v: v3
  • Loading branch information
Akinobu Mita authored and Wim Van Sebroeck committed Oct 29, 2006
1 parent 31ef3f2 commit 6ae2019
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fd0c5eca447254682a8372bc73b6bdcc16bf6777
refs/heads/master: 58c6570add83e30c0905885171fbffc134441165
9 changes: 7 additions & 2 deletions trunk/drivers/char/watchdog/sc1200wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ static int __init sc1200wdt_init(void)
if (io == -1) {
printk(KERN_ERR PFX "io parameter must be specified\n");
ret = -EINVAL;
goto out_clean;
goto out_pnp;
}

#if defined CONFIG_PNP
Expand All @@ -405,7 +405,7 @@ static int __init sc1200wdt_init(void)
if (!request_region(io, io_len, SC1200_MODULE_NAME)) {
printk(KERN_ERR PFX "Unable to register IO port %#x\n", io);
ret = -EBUSY;
goto out_clean;
goto out_pnp;
}

ret = sc1200wdt_probe();
Expand Down Expand Up @@ -435,6 +435,11 @@ static int __init sc1200wdt_init(void)
out_io:
release_region(io, io_len);

out_pnp:
#if defined CONFIG_PNP
if (isapnp)
pnp_unregister_driver(&scl200wdt_pnp_driver);
#endif
goto out_clean;
}

Expand Down

0 comments on commit 6ae2019

Please sign in to comment.