|
@@ -101,7 +101,6 @@ static void *lib80211_tkip_init(int key_idx)
|
|
|
priv->tx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0,
|
|
|
CRYPTO_ALG_ASYNC);
|
|
|
if (IS_ERR(priv->tx_tfm_arc4)) {
|
|
|
- printk(KERN_DEBUG pr_fmt("could not allocate crypto API arc4\n"));
|
|
|
priv->tx_tfm_arc4 = NULL;
|
|
|
goto fail;
|
|
|
}
|
|
@@ -109,7 +108,6 @@ static void *lib80211_tkip_init(int key_idx)
|
|
|
priv->tx_tfm_michael = crypto_alloc_hash("michael_mic", 0,
|
|
|
CRYPTO_ALG_ASYNC);
|
|
|
if (IS_ERR(priv->tx_tfm_michael)) {
|
|
|
- printk(KERN_DEBUG pr_fmt("could not allocate crypto API michael_mic\n"));
|
|
|
priv->tx_tfm_michael = NULL;
|
|
|
goto fail;
|
|
|
}
|
|
@@ -117,7 +115,6 @@ static void *lib80211_tkip_init(int key_idx)
|
|
|
priv->rx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0,
|
|
|
CRYPTO_ALG_ASYNC);
|
|
|
if (IS_ERR(priv->rx_tfm_arc4)) {
|
|
|
- printk(KERN_DEBUG pr_fmt("could not allocate crypto API arc4\n"));
|
|
|
priv->rx_tfm_arc4 = NULL;
|
|
|
goto fail;
|
|
|
}
|
|
@@ -125,7 +122,6 @@ static void *lib80211_tkip_init(int key_idx)
|
|
|
priv->rx_tfm_michael = crypto_alloc_hash("michael_mic", 0,
|
|
|
CRYPTO_ALG_ASYNC);
|
|
|
if (IS_ERR(priv->rx_tfm_michael)) {
|
|
|
- printk(KERN_DEBUG pr_fmt("could not allocate crypto API michael_mic\n"));
|
|
|
priv->rx_tfm_michael = NULL;
|
|
|
goto fail;
|
|
|
}
|