mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
[CRYPTO] geode: Add __dev{init,exit} annotations
This patch adds __dev{init,exit} annotations. Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
7c3d703fa8
commit
f17922bc75
1 changed files with 2 additions and 2 deletions
|
@ -499,7 +499,7 @@ static struct crypto_alg geode_ecb_alg = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
static void
|
static void __devexit
|
||||||
geode_aes_remove(struct pci_dev *dev)
|
geode_aes_remove(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
crypto_unregister_alg(&geode_alg);
|
crypto_unregister_alg(&geode_alg);
|
||||||
|
@ -514,7 +514,7 @@ geode_aes_remove(struct pci_dev *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int
|
static int __devinit
|
||||||
geode_aes_probe(struct pci_dev *dev, const struct pci_device_id *id)
|
geode_aes_probe(struct pci_dev *dev, const struct pci_device_id *id)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
Loading…
Reference in a new issue