Merge tag 'gcc-plugins-v5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-microblaze.git] / include / crypto / streebog.h
index 856e32a..cae1b4a 100644 (file)
@@ -23,7 +23,10 @@ struct streebog_uint512 {
 };
 
 struct streebog_state {
-       u8 buffer[STREEBOG_BLOCK_SIZE];
+       union {
+               u8 buffer[STREEBOG_BLOCK_SIZE];
+               struct streebog_uint512 m;
+       };
        struct streebog_uint512 hash;
        struct streebog_uint512 h;
        struct streebog_uint512 N;