]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/u-boot/md5.h
Merge remote-tracking branch 'remotes/tx53-devel/tx53-devel' into karo-tx-uboot
[karo-tx-uboot.git] / include / u-boot / md5.h
index 8b44a7f8441e53916d5e9d755ed97c8717e4b41b..e09c16a6e3fe1e10ca539a6bee5cbba6cf304546 100644 (file)
@@ -6,12 +6,15 @@
 #ifndef _MD5_H
 #define _MD5_H
 
-#include <linux/types.h>
+#include "compiler.h"
 
 struct MD5Context {
        __u32 buf[4];
        __u32 bits[2];
-       unsigned char in[64];
+       union {
+               unsigned char in[64];
+               __u32 in32[16];
+       };
 };
 
 /*