summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rt3070/md4.h
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz2009-12-11 21:23:15 +0100
committerGreg Kroah-Hartman2009-12-11 21:23:15 +0100
commit51126deb201c59cc8cdc4873e3d130d6bc60513d (patch)
treeaae5d37bda36d40b6486021e5f2e4d8c7721dfba /drivers/staging/rt3070/md4.h
parentStaging: rt28x0: fix comments in *.h files (diff)
downloadkernel-qcow2-linux-51126deb201c59cc8cdc4873e3d130d6bc60513d.tar.gz
kernel-qcow2-linux-51126deb201c59cc8cdc4873e3d130d6bc60513d.tar.xz
kernel-qcow2-linux-51126deb201c59cc8cdc4873e3d130d6bc60513d.zip
Staging: rt28x0: remove typedefs (part one)
Remove typedefs from rtmp_type.h. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/rt3070/md4.h')
-rw-r--r--drivers/staging/rt3070/md4.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/staging/rt3070/md4.h b/drivers/staging/rt3070/md4.h
index f1e5b526350a..a9cc7b0f3ee3 100644
--- a/drivers/staging/rt3070/md4.h
+++ b/drivers/staging/rt3070/md4.h
@@ -30,13 +30,13 @@
/* MD4 context. */
typedef struct _MD4_CTX_ {
- ULONG state[4]; /* state (ABCD) */
- ULONG count[2]; /* number of bits, modulo 2^64 (lsb first) */
- UCHAR buffer[64]; /* input buffer */
+ unsigned long state[4]; /* state (ABCD) */
+ unsigned long count[2]; /* number of bits, modulo 2^64 (lsb first) */
+ u8 buffer[64]; /* input buffer */
} MD4_CTX;
-VOID MD4Init (MD4_CTX *);
-VOID MD4Update (MD4_CTX *, PUCHAR, UINT);
-VOID MD4Final (UCHAR [16], MD4_CTX *);
+void MD4Init (MD4_CTX *);
+void MD4Update (MD4_CTX *, u8 *, UINT);
+void MD4Final (u8 [16], MD4_CTX *);
#endif //__MD4_H__ \ No newline at end of file