Commit b4225885 authored by Kevin Wells's avatar Kevin Wells Committed by Grant Likely

spi/amba_pl022: Fix probe and remove hook section annotations.

Probe and remove hooks belong in the __devinit and __devexit sections
respectively.  This patch fixes incorrect annotations on the pl022 spi
driver.
Signed-off-by: default avatarKevin Wells <wellsk40@gmail.com>
Acked-by: default avatarLinus Walleij <linus.walleij@stericsson.com>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent 5ffdcd94
...@@ -1723,7 +1723,7 @@ static void pl022_cleanup(struct spi_device *spi) ...@@ -1723,7 +1723,7 @@ static void pl022_cleanup(struct spi_device *spi)
} }
static int __init static int __devinit
pl022_probe(struct amba_device *adev, struct amba_id *id) pl022_probe(struct amba_device *adev, struct amba_id *id)
{ {
struct device *dev = &adev->dev; struct device *dev = &adev->dev;
...@@ -1838,7 +1838,7 @@ pl022_probe(struct amba_device *adev, struct amba_id *id) ...@@ -1838,7 +1838,7 @@ pl022_probe(struct amba_device *adev, struct amba_id *id)
return status; return status;
} }
static int __exit static int __devexit
pl022_remove(struct amba_device *adev) pl022_remove(struct amba_device *adev)
{ {
struct pl022 *pl022 = amba_get_drvdata(adev); struct pl022 *pl022 = amba_get_drvdata(adev);
...@@ -1970,7 +1970,7 @@ static struct amba_driver pl022_driver = { ...@@ -1970,7 +1970,7 @@ static struct amba_driver pl022_driver = {
}, },
.id_table = pl022_ids, .id_table = pl022_ids,
.probe = pl022_probe, .probe = pl022_probe,
.remove = __exit_p(pl022_remove), .remove = __devexit_p(pl022_remove),
.suspend = pl022_suspend, .suspend = pl022_suspend,
.resume = pl022_resume, .resume = pl022_resume,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment