Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 143069
b: refs/heads/master
c: c98d58e
h: refs/heads/master
i:
  143067: 64c6925
v: v3
  • Loading branch information
Uwe Kleine-König authored and Wim Van Sebroeck committed Apr 8, 2009
1 parent faab53b commit d0c24d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 47dec7c6c48a12bdacdf5f935f10f44e66d9c98c
refs/heads/master: c98d58e00d8562520c9a69e688f007b860faebaa
6 changes: 3 additions & 3 deletions trunk/drivers/watchdog/ks8695_wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ static struct miscdevice ks8695wdt_miscdev = {
.fops = &ks8695wdt_fops,
};

static int __init ks8695wdt_probe(struct platform_device *pdev)
static int __devinit ks8695wdt_probe(struct platform_device *pdev)
{
int res;

Expand All @@ -238,7 +238,7 @@ static int __init ks8695wdt_probe(struct platform_device *pdev)
return 0;
}

static int __exit ks8695wdt_remove(struct platform_device *pdev)
static int __devexit ks8695wdt_remove(struct platform_device *pdev)
{
int res;

Expand Down Expand Up @@ -276,7 +276,7 @@ static int ks8695wdt_resume(struct platform_device *pdev)

static struct platform_driver ks8695wdt_driver = {
.probe = ks8695wdt_probe,
.remove = __exit_p(ks8695wdt_remove),
.remove = __devexit_p(ks8695wdt_remove),
.shutdown = ks8695wdt_shutdown,
.suspend = ks8695wdt_suspend,
.resume = ks8695wdt_resume,
Expand Down

0 comments on commit d0c24d2

Please sign in to comment.