diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-23 18:59:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-23 18:59:10 -0400 |
commit | 0bd3fbd4abeafa19ae0302d25194468b022d1a56 (patch) | |
tree | 1fc34b25666c97b85dfb7199e48b2e074ffde264 /crypto | |
parent | 0b87da68a0f0a7bf7f7446cf64f92e672bd68ef8 (diff) | |
parent | ef45b834319f8a18f257a40ba4bce6b829ef1708 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Pull crypto updates from Herbert Xu:
- New cipher/hash driver for ARM ux500.
- Code clean-up for aesni-intel.
- Misc fixes.
Fixed up conflicts in arch/arm/mach-ux500/devices-common.h, where quite
frankly some of it made no sense at all (the pull brought in a
declaration for the dbx500_add_platform_device_noirq() function, which
neither exists nor is used anywhere).
Also some trivial add-add context conflicts in the Kconfig file in
drivers/{char/hw_random,crypto}/
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
crypto: aesni-intel - move more common code to ablk_init_common
crypto: aesni-intel - use crypto_[un]register_algs
crypto: ux500 - Cleanup hardware identification
crypto: ux500 - Update DMA handling for 3.4
mach-ux500: crypto - core support for CRYP/HASH module.
crypto: ux500 - Add driver for HASH hardware
crypto: ux500 - Add driver for CRYP hardware
hwrng: Kconfig - modify default state for atmel-rng driver
hwrng: omap - use devm_request_and_ioremap
crypto: crypto4xx - move up err_request_irq label
crypto, xor: Sanitize checksumming function selection output
crypto: caam - add backward compatible string sec4.0
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/xor.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/xor.c b/crypto/xor.c index b75182d8ab14..664b6dfa9e2c 100644 --- a/crypto/xor.c +++ b/crypto/xor.c | |||
@@ -129,9 +129,9 @@ calibrate_xor_blocks(void) | |||
129 | 129 | ||
130 | if (fastest) { | 130 | if (fastest) { |
131 | printk(KERN_INFO "xor: automatically using best " | 131 | printk(KERN_INFO "xor: automatically using best " |
132 | "checksumming function: %s\n", | 132 | "checksumming function:\n"); |
133 | fastest->name); | ||
134 | xor_speed(fastest); | 133 | xor_speed(fastest); |
134 | goto out; | ||
135 | } else { | 135 | } else { |
136 | printk(KERN_INFO "xor: measuring software checksum speed\n"); | 136 | printk(KERN_INFO "xor: measuring software checksum speed\n"); |
137 | XOR_TRY_TEMPLATES; | 137 | XOR_TRY_TEMPLATES; |
@@ -146,6 +146,7 @@ calibrate_xor_blocks(void) | |||
146 | 146 | ||
147 | #undef xor_speed | 147 | #undef xor_speed |
148 | 148 | ||
149 | out: | ||
149 | free_pages((unsigned long)b1, 2); | 150 | free_pages((unsigned long)b1, 2); |
150 | 151 | ||
151 | active_template = fastest; | 152 | active_template = fastest; |