diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-16 12:15:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-16 12:15:21 -0400 |
commit | 0d2ecee2bdb2a19d04bc5cefac0f86e790f1aad4 (patch) | |
tree | 2e0f08819a57e2c191f6e7fe2b2cd2f2415143bd /drivers/crypto/omap-sham.c | |
parent | 3ae2a1ce2e7b70254e5c9e465adefac9cba191d6 (diff) | |
parent | f07ef1de9baeb2add514c51f59d4bc3c659c2ca4 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
crypto: tcrypt - do not attempt to write to readonly variable
random: update interface comments to reflect reality
crypto: picoxcell - add support for the picoxcell crypto engines
crypto: sha1 - Add test vector to test partial block processing
hwrng: omap - Convert release_resource to release_region/release_mem_region
crypto: aesni-intel - Fix remaining leak in rfc4106_set_hash_key
crypto: omap-sham - don't treat NULL clk as an error
crypto: omap-aes - don't treat NULL clk as an error
crypto: testmgr - mark ghash as fips_allowed
crypto: testmgr - mark xts(aes) as fips_allowed
crypto: skcipher - remove redundant NULL check
hwrng: pixocell - add support for picoxcell TRNG
crypto: aesni-intel - Don't leak memory in rfc4106_set_hash_subkey
Diffstat (limited to 'drivers/crypto/omap-sham.c')
-rw-r--r-- | drivers/crypto/omap-sham.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/crypto/omap-sham.c b/drivers/crypto/omap-sham.c index 2e71123516e0..465cde3e4f60 100644 --- a/drivers/crypto/omap-sham.c +++ b/drivers/crypto/omap-sham.c | |||
@@ -1206,9 +1206,9 @@ static int __devinit omap_sham_probe(struct platform_device *pdev) | |||
1206 | 1206 | ||
1207 | /* Initializing the clock */ | 1207 | /* Initializing the clock */ |
1208 | dd->iclk = clk_get(dev, "ick"); | 1208 | dd->iclk = clk_get(dev, "ick"); |
1209 | if (!dd->iclk) { | 1209 | if (IS_ERR(dd->iclk)) { |
1210 | dev_err(dev, "clock intialization failed.\n"); | 1210 | dev_err(dev, "clock intialization failed.\n"); |
1211 | err = -ENODEV; | 1211 | err = PTR_ERR(dd->iclk); |
1212 | goto clk_err; | 1212 | goto clk_err; |
1213 | } | 1213 | } |
1214 | 1214 | ||