diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-04-07 11:07:02 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-04-07 11:07:02 +0000 |
commit | 44c81fc2e406c9911f624a02a211f336ebefbce8 (patch) | |
tree | 8cb4f5876e5aa7e4be385d681d105786d4966980 /target/linux/generic-2.6/patches-2.6.26 | |
parent | 4b10f6e8c9d7bbb48021dc5253429ad678b0c74b (diff) | |
download | upstream-44c81fc2e406c9911f624a02a211f336ebefbce8.tar.gz upstream-44c81fc2e406c9911f624a02a211f336ebefbce8.tar.bz2 upstream-44c81fc2e406c9911f624a02a211f336ebefbce8.zip |
[kernel] fix typo in 910-cryptodev_backport.patch (#3933)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15132 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.26')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.26/910-cryptodev_backport.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.26/910-cryptodev_backport.patch b/target/linux/generic-2.6/patches-2.6.26/910-cryptodev_backport.patch index 5cc6fa4c9b..94adc4d185 100644 --- a/target/linux/generic-2.6/patches-2.6.26/910-cryptodev_backport.patch +++ b/target/linux/generic-2.6/patches-2.6.26/910-cryptodev_backport.patch @@ -501,7 +501,7 @@ + dw = SUBKEY_L(i + 3) ^ SUBKEY_R(i + 3); dw = rol32(dw, 8);/* round 4 */ SUBKEY_R(i + 3) = SUBKEY_L(i + 3) ^ dw; SUBKEY_L(i + 3) = dw; - dw = SUBKEY_L(i + 4) ^ SUBKEY_R(i + 4); dw = ROL8(dw);/* round 5 */ -+ dw = SUBKEY_L(i + 4) ^ SUBKEY_R(i + 4); dw = rol32(dw, 9);/* round 5 */ ++ dw = SUBKEY_L(i + 4) ^ SUBKEY_R(i + 4); dw = rol32(dw, 8);/* round 5 */ SUBKEY_R(i + 4) = SUBKEY_L(i + 4) ^ dw; SUBKEY_L(i + 4) = dw; - dw = SUBKEY_L(i + 5) ^ SUBKEY_R(i + 5); dw = ROL8(dw);/* round 6 */ + dw = SUBKEY_L(i + 5) ^ SUBKEY_R(i + 5); dw = rol32(dw, 8);/* round 6 */ |