diff options
author | Eric Rossman <edrossma@us.ibm.com> | 2005-09-03 15:58:03 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-09-05 00:06:29 -0700 |
commit | 2dee702fcb197d80c1a94650fb611539dd8135ce (patch) | |
tree | 86ca24687aa6d8d6a4bd09c3cc63cd4c4475e19a /drivers/s390/crypto/z90common.h | |
parent | b6d09449d53f5aa7c67b1be3e90d7b7ab2aad09c (diff) |
[PATCH] s390: crypto driver update
crypto device driver update:
- Suppress syslog messages for some return codes.
- Fix incorrect bounds checking in /proc interface.
- Remove hotplug calls.
- Remove linux version checks.
- Remove device workqueue on module unload.
Signed-off-by: Eric Rossman <edrossma@us.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/s390/crypto/z90common.h')
-rw-r--r-- | drivers/s390/crypto/z90common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/s390/crypto/z90common.h b/drivers/s390/crypto/z90common.h index bcabac7a7c4..e319e78b5ea 100644 --- a/drivers/s390/crypto/z90common.h +++ b/drivers/s390/crypto/z90common.h @@ -27,7 +27,7 @@ #ifndef _Z90COMMON_H_ #define _Z90COMMON_H_ -#define VERSION_Z90COMMON_H "$Revision: 1.16 $" +#define VERSION_Z90COMMON_H "$Revision: 1.17 $" #define RESPBUFFSIZE 256 @@ -164,5 +164,4 @@ struct CPRBX { #define UMIN(a,b) ((a) < (b) ? (a) : (b)) #define IS_EVEN(x) ((x) == (2 * ((x) / 2))) - #endif |