mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 19:38:25 +02:00
26 lines
755 B
Diff
26 lines
755 B
Diff
|
From da0df827fa9600b3104d4b8d8cc3edbdd5a0849b Mon Sep 17 00:00:00 2001
|
||
|
From: Alison Wang <b18965@freescale.com>
|
||
|
Date: Thu, 4 Aug 2011 09:59:53 +0800
|
||
|
Subject: [PATCH 41/52] Fix CAU driver bug for SHA1 digest algorithm
|
||
|
|
||
|
Make the compiler to never inline a particular member
|
||
|
function.
|
||
|
|
||
|
Signed-off-by: Alison Wang <b18965@freescale.com>
|
||
|
---
|
||
|
drivers/crypto/mcfcau-sha1.c | 3 ++-
|
||
|
1 files changed, 2 insertions(+), 1 deletions(-)
|
||
|
|
||
|
--- a/drivers/crypto/mcfcau-sha1.c
|
||
|
+++ b/drivers/crypto/mcfcau-sha1.c
|
||
|
@@ -60,7 +60,8 @@ struct mcfcau_sha1_ctx {
|
||
|
u8 buffer[64];
|
||
|
};
|
||
|
|
||
|
-static void mcfcau_sha1_transform(__u32 *digest, const char *in, __u32 *W)
|
||
|
+static noinline void mcfcau_sha1_transform(__u32 *digest,
|
||
|
+ const char *in, __u32 *W)
|
||
|
{
|
||
|
int i;
|
||
|
u32 *tmp_p;
|