diff options
Diffstat (limited to 'include/u-boot/md5.h')
-rw-r--r-- | include/u-boot/md5.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/u-boot/md5.h b/include/u-boot/md5.h index 08924cce3c..e09c16a6e3 100644 --- a/include/u-boot/md5.h +++ b/include/u-boot/md5.h @@ -11,7 +11,10 @@ struct MD5Context { __u32 buf[4]; __u32 bits[2]; - unsigned char in[64]; + union { + unsigned char in[64]; + __u32 in32[16]; + }; }; /* |