Use desc instead of a stack buffer in the final function.  This
fixes a compiler warning about buf being uninitialised.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
 
 static int padlock_sha1_final(struct shash_desc *desc, u8 *out)
 {
-       u8 buf[4];
+       const u8 *buf = (void *)desc;
 
        return padlock_sha1_finup(desc, buf, 0, out);
 }
 
 static int padlock_sha256_final(struct shash_desc *desc, u8 *out)
 {
-       u8 buf[4];
+       const u8 *buf = (void *)desc;
 
        return padlock_sha256_finup(desc, buf, 0, out);
 }