From 78eb2897d88f6f5cb1e0a3c94dcbc8edbd3f6473 Mon Sep 17 00:00:00 2001 From: YAMANE Toshiaki Date: Tue, 20 Nov 2012 21:13:46 +0900 Subject: [PATCH] --- yaml --- r: 338058 b: refs/heads/master c: e10fbca9536398efa0d7ced0b099deca5dff0eeb h: refs/heads/master v: v3 --- [refs] | 2 +- .../staging/rtl8187se/ieee80211/ieee80211_crypt_wep.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/[refs] b/[refs] index 44a136b0a6df..2150545cde7a 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 98319002a2bb8e1d2d59a863bc852fbd87cf6ad8 +refs/heads/master: e10fbca9536398efa0d7ced0b099deca5dff0eeb diff --git a/trunk/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt_wep.c b/trunk/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt_wep.c index 725408592aec..bb9a0781e20b 100644 --- a/trunk/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt_wep.c +++ b/trunk/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt_wep.c @@ -9,6 +9,8 @@ * more details. */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + //#include #include #include @@ -50,15 +52,13 @@ static void *prism2_wep_init(int keyidx) priv->key_idx = 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 " - "crypto API arc4\n"); + pr_debug("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 " - "crypto API arc4\n"); + pr_debug("could not allocate crypto API arc4\n"); priv->rx_tfm = NULL; goto fail; }