Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 176190
b: refs/heads/master
c: 965346e
h: refs/heads/master
v: v3
  • Loading branch information
Grant Likely committed Dec 13, 2009
1 parent d767dbc commit 3c2a6fe
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: 35c9049b27040d09461bc90928ad770be7ddf661
refs/heads/master: 965346e3b99e2c5f51bd1325ddd0257227000355
6 changes: 3 additions & 3 deletions trunk/drivers/spi/spi_imx.c
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ static void spi_imx_cleanup(struct spi_device *spi)
{
}

static int __init spi_imx_probe(struct platform_device *pdev)
static int __devinit spi_imx_probe(struct platform_device *pdev)
{
struct spi_imx_master *mxc_platform_info;
struct spi_master *master;
Expand Down Expand Up @@ -634,7 +634,7 @@ static int __init spi_imx_probe(struct platform_device *pdev)
return ret;
}

static int __exit spi_imx_remove(struct platform_device *pdev)
static int __devexit spi_imx_remove(struct platform_device *pdev)
{
struct spi_master *master = platform_get_drvdata(pdev);
struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Expand Down Expand Up @@ -668,7 +668,7 @@ static struct platform_driver spi_imx_driver = {
.owner = THIS_MODULE,
},
.probe = spi_imx_probe,
.remove = __exit_p(spi_imx_remove),
.remove = __devexit_p(spi_imx_remove),
};

static int __init spi_imx_init(void)
Expand Down

0 comments on commit 3c2a6fe

Please sign in to comment.