diff options
author | Adrian Bunk <bunk@kernel.org> | 2007-12-11 21:42:41 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-01-10 16:16:38 -0500 |
commit | f17922bc75d6261dd6e0e2d687ff43b96e91e04a (patch) | |
tree | 513bacbb4a0be6183746871a5cd812f7ca368058 /drivers/crypto | |
parent | 7c3d703fa81db42f9766325cebd6bfc1c5eac838 (diff) |
[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>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/geode-aes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/crypto/geode-aes.c b/drivers/crypto/geode-aes.c index 581b003ad25c..4801162919d9 100644 --- a/drivers/crypto/geode-aes.c +++ b/drivers/crypto/geode-aes.c | |||
@@ -499,7 +499,7 @@ static struct crypto_alg geode_ecb_alg = { | |||
499 | } | 499 | } |
500 | }; | 500 | }; |
501 | 501 | ||
502 | static void | 502 | static void __devexit |
503 | geode_aes_remove(struct pci_dev *dev) | 503 | geode_aes_remove(struct pci_dev *dev) |
504 | { | 504 | { |
505 | crypto_unregister_alg(&geode_alg); | 505 | crypto_unregister_alg(&geode_alg); |
@@ -514,7 +514,7 @@ geode_aes_remove(struct pci_dev *dev) | |||
514 | } | 514 | } |
515 | 515 | ||
516 | 516 | ||
517 | static int | 517 | static int __devinit |
518 | geode_aes_probe(struct pci_dev *dev, const struct pci_device_id *id) | 518 | geode_aes_probe(struct pci_dev *dev, const struct pci_device_id *id) |
519 | { | 519 | { |
520 | int ret; | 520 | int ret; |