|
@@ -48,14 +48,14 @@ static void *prism2_wep_init(int keyidx)
|
|
|
|
|
|
priv->tx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC);
|
|
priv->tx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC);
|
|
if (IS_ERR(priv->tx_tfm)) {
|
|
if (IS_ERR(priv->tx_tfm)) {
|
|
- printk(KERN_DEBUG "ieee80211_crypt_wep: could not allocate "
|
|
|
|
|
|
+ pr_debug("ieee80211_crypt_wep: could not allocate "
|
|
"crypto API arc4\n");
|
|
"crypto API arc4\n");
|
|
priv->tx_tfm = NULL;
|
|
priv->tx_tfm = NULL;
|
|
goto fail;
|
|
goto fail;
|
|
}
|
|
}
|
|
priv->rx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC);
|
|
priv->rx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC);
|
|
if (IS_ERR(priv->rx_tfm)) {
|
|
if (IS_ERR(priv->rx_tfm)) {
|
|
- printk(KERN_DEBUG "ieee80211_crypt_wep: could not allocate "
|
|
|
|
|
|
+ pr_debug("ieee80211_crypt_wep: could not allocate "
|
|
"crypto API arc4\n");
|
|
"crypto API arc4\n");
|
|
priv->rx_tfm = NULL;
|
|
priv->rx_tfm = NULL;
|
|
goto fail;
|
|
goto fail;
|