Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 207929
b: refs/heads/master
c: b1a6f24
h: refs/heads/master
i:
  207927: 57945ef
v: v3
  • Loading branch information
Richard Röjfors authored and Greg Kroah-Hartman committed Aug 10, 2010
1 parent fdb04f7 commit 93db4a0
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: 1917ac76e023339c73844bec775375b147f57ac7
refs/heads/master: b1a6f24394d44b7bd2c8ec3f301a5eda72ce462f
6 changes: 3 additions & 3 deletions trunk/drivers/serial/timbuart.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ static struct uart_driver timbuart_driver = {
.nr = 1
};

static int timbuart_probe(struct platform_device *dev)
static int __devinit timbuart_probe(struct platform_device *dev)
{
int err, irq;
struct timbuart_port *uart;
Expand Down Expand Up @@ -489,7 +489,7 @@ static int timbuart_probe(struct platform_device *dev)
return err;
}

static int timbuart_remove(struct platform_device *dev)
static int __devexit timbuart_remove(struct platform_device *dev)
{
struct timbuart_port *uart = platform_get_drvdata(dev);

Expand All @@ -507,7 +507,7 @@ static struct platform_driver timbuart_platform_driver = {
.owner = THIS_MODULE,
},
.probe = timbuart_probe,
.remove = timbuart_remove,
.remove = __devexit_p(timbuart_remove),
};

/*--------------------------------------------------------------------------*/
Expand Down

0 comments on commit 93db4a0

Please sign in to comment.