aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/padlock.h
diff options
context:
space:
mode:
authorMichal Ludvig <michal@logix.cz>2006-07-15 10:23:49 +1000
committerHerbert Xu <herbert@gondor.apana.org.au>2006-09-21 11:40:22 +1000
commitccc17c34d676f116bd09dd36a3b01627bc6a2f8a (patch)
tree458c6c6e7b187885c5fac80668c44583ce930ab1 /drivers/crypto/padlock.h
parent[CRYPTO] padlock: Add compatibility alias after rename (diff)
downloadlinux-dev-ccc17c34d676f116bd09dd36a3b01627bc6a2f8a.tar.xz
linux-dev-ccc17c34d676f116bd09dd36a3b01627bc6a2f8a.zip
[CRYPTO] padlock: Update private header file
PADLOCK_CRA_PRIORITY is shared between padlock-aes and padlock-sha so it should be in the header. On the other hand "struct cword" is only used in padlock-aes.c so it's unnecessary to have it in padlock.h Signed-off-by: Michal Ludvig <michal@logix.cz> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/padlock.h')
-rw-r--r--drivers/crypto/padlock.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/drivers/crypto/padlock.h b/drivers/crypto/padlock.h
index e2ee3b689dbd..7e3385b0904d 100644
--- a/drivers/crypto/padlock.h
+++ b/drivers/crypto/padlock.h
@@ -15,17 +15,8 @@
#define PADLOCK_ALIGNMENT 16
-/* Control word. */
-struct cword {
- unsigned int __attribute__ ((__packed__))
- rounds:4,
- algo:3,
- keygen:1,
- interm:1,
- encdec:1,
- ksize:2;
-} __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
-
#define PFX "padlock: "
+#define PADLOCK_CRA_PRIORITY 300
+
#endif /* _CRYPTO_PADLOCK_H */