Staging: rtl8192u: Replace printk() with pr_debug()
[deliverable/linux.git] / drivers / staging / rtl8192u / ieee80211 / ieee80211_crypt_wep.c
index c43d0fe7edf7d1f7ca3e67de11ebd53e5d4ee75f..8962de7668ede9a0782ac026be9ebfc2bea6631b 100644 (file)
@@ -48,14 +48,14 @@ static void *prism2_wep_init(int keyidx)
 
        priv->tx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC);
        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");
                priv->tx_tfm = NULL;
                goto fail;
        }
        priv->rx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC);
        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");
                priv->rx_tfm = NULL;
                goto fail;
This page took 0.028501 seconds and 5 git commands to generate.