Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 275413
b: refs/heads/master
c: 1cb201a
h: refs/heads/master
i:
  275411: 62f4ba2
v: v3
  • Loading branch information
Jean-Christophe PLAGNIOL-VILLARD committed Nov 9, 2011
1 parent 091598b commit d621fc4
Show file tree
Hide file tree
Showing 2 changed files with 4 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: b2eb5309fbc680406d6bf3b182178f0cfaf951fb
refs/heads/master: 1cb201af626eedf0ff78cc1712c731b463994c60
5 changes: 3 additions & 2 deletions trunk/drivers/spi/spi-atmel.c
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ static void atmel_spi_cleanup(struct spi_device *spi)

/*-------------------------------------------------------------------------*/

static int __init atmel_spi_probe(struct platform_device *pdev)
static int __devinit atmel_spi_probe(struct platform_device *pdev)
{
struct resource *regs;
int irq;
Expand Down Expand Up @@ -1003,7 +1003,7 @@ static int __init atmel_spi_probe(struct platform_device *pdev)
return ret;
}

static int __exit atmel_spi_remove(struct platform_device *pdev)
static int __devexit atmel_spi_remove(struct platform_device *pdev)
{
struct spi_master *master = platform_get_drvdata(pdev);
struct atmel_spi *as = spi_master_get_devdata(master);
Expand Down Expand Up @@ -1072,6 +1072,7 @@ static struct platform_driver atmel_spi_driver = {
},
.suspend = atmel_spi_suspend,
.resume = atmel_spi_resume,
.probe = atmel_spi_probe,
.remove = __exit_p(atmel_spi_remove),
};
module_platform_driver(atmel_spi_driver);
Expand Down

0 comments on commit d621fc4

Please sign in to comment.