diff options
author | Patrick McHardy <kaber@trash.net> | 2008-05-07 10:29:42 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-07-10 08:35:10 -0400 |
commit | 7808f0738f9ac5cff05bd89ee457334b9a029b5c (patch) | |
tree | 4a2213d2c40e5bd446a68b5a2815ddae13e52f9d /drivers/crypto | |
parent | 3c42cbc2e01238778db92e16873a6e6f015a00af (diff) |
[HIFN]: Remove printk_ratelimit() for debugging printk
Without debugging this spams the log with "printk: N messages surpressed"
without any actual messages on error. With debugging its more useful to
always see the message.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Acked-by: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/hifn_795x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/hifn_795x.c b/drivers/crypto/hifn_795x.c index d7a51ee26eed..e5c3bc4c4a1b 100644 --- a/drivers/crypto/hifn_795x.c +++ b/drivers/crypto/hifn_795x.c | |||
@@ -1651,7 +1651,7 @@ static int hifn_setup_session(struct ablkcipher_request *req) | |||
1651 | err_out: | 1651 | err_out: |
1652 | spin_unlock_irqrestore(&dev->lock, flags); | 1652 | spin_unlock_irqrestore(&dev->lock, flags); |
1653 | err_out_exit: | 1653 | err_out_exit: |
1654 | if (err && printk_ratelimit()) | 1654 | if (err) |
1655 | dprintk("%s: iv: %p [%d], key: %p [%d], mode: %u, op: %u, " | 1655 | dprintk("%s: iv: %p [%d], key: %p [%d], mode: %u, op: %u, " |
1656 | "type: %u, err: %d.\n", | 1656 | "type: %u, err: %d.\n", |
1657 | dev->name, ctx->iv, ctx->ivsize, | 1657 | dev->name, ctx->iv, ctx->ivsize, |