Commit 5259b329 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman

staging: ks7010: replace DPRINTK traces in favour of netdev_*

This commit removes custom defined DPRINTK macro and replaces all the
associated debug and other traces for preferred ones netdev_*.
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7acf4002
This diff is collapsed.
This diff is collapsed.
...@@ -34,16 +34,6 @@ ...@@ -34,16 +34,6 @@
#include "ks7010_sdio.h" #include "ks7010_sdio.h"
#ifdef KS_WLAN_DEBUG
#define DPRINTK(n, fmt, args...) \
do { \
if (KS_WLAN_DEBUG > (n)) \
pr_notice("%s: "fmt, __func__, ## args); \
} while (0)
#else
#define DPRINTK(n, fmt, args...)
#endif
struct ks_wlan_parameter { struct ks_wlan_parameter {
u8 operation_mode; /* Operation Mode */ u8 operation_mode; /* Operation Mode */
u8 channel; /* Channel */ u8 channel; /* Channel */
......
...@@ -86,7 +86,7 @@ int ks_wlan_update_phy_information(struct ks_wlan_private *priv) ...@@ -86,7 +86,7 @@ int ks_wlan_update_phy_information(struct ks_wlan_private *priv)
{ {
struct iw_statistics *wstats = &priv->wstats; struct iw_statistics *wstats = &priv->wstats;
DPRINTK(4, "in_interrupt = %ld\n", in_interrupt()); netdev_dbg(priv->net_dev, "in_interrupt = %ld\n", in_interrupt());
if (priv->dev_state < DEVICE_STATE_READY) if (priv->dev_state < DEVICE_STATE_READY)
return -EBUSY; /* not finished initialize */ return -EBUSY; /* not finished initialize */
...@@ -103,7 +103,7 @@ int ks_wlan_update_phy_information(struct ks_wlan_private *priv) ...@@ -103,7 +103,7 @@ int ks_wlan_update_phy_information(struct ks_wlan_private *priv)
/* interruptible_sleep_on_timeout(&priv->confirm_wait, HZ/2); */ /* interruptible_sleep_on_timeout(&priv->confirm_wait, HZ/2); */
if (!wait_for_completion_interruptible_timeout if (!wait_for_completion_interruptible_timeout
(&priv->confirm_wait, HZ / 2)) { (&priv->confirm_wait, HZ / 2)) {
DPRINTK(1, "wait time out!!\n"); netdev_dbg(priv->net_dev, "wait time out!!\n");
} }
atomic_inc(&update_phyinfo); atomic_inc(&update_phyinfo);
...@@ -116,7 +116,7 @@ int ks_wlan_update_phy_information(struct ks_wlan_private *priv) ...@@ -116,7 +116,7 @@ int ks_wlan_update_phy_information(struct ks_wlan_private *priv)
static static
void ks_wlan_update_phyinfo_timeout(struct timer_list *unused) void ks_wlan_update_phyinfo_timeout(struct timer_list *unused)
{ {
DPRINTK(4, "in_interrupt = %ld\n", in_interrupt()); pr_debug("in_interrupt = %ld\n", in_interrupt());
atomic_set(&update_phyinfo, 0); atomic_set(&update_phyinfo, 0);
} }
...@@ -364,7 +364,7 @@ static int ks_wlan_set_wap(struct net_device *dev, struct iw_request_info *info, ...@@ -364,7 +364,7 @@ static int ks_wlan_set_wap(struct net_device *dev, struct iw_request_info *info,
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
DPRINTK(2, "bssid = %pM\n", priv->reg.bssid); netdev_dbg(dev, "bssid = %pM\n", priv->reg.bssid);
/* Write it to the card */ /* Write it to the card */
if (priv->need_commit) { if (priv->need_commit) {
...@@ -677,7 +677,7 @@ static int ks_wlan_get_rate(struct net_device *dev, ...@@ -677,7 +677,7 @@ static int ks_wlan_get_rate(struct net_device *dev,
{ {
struct ks_wlan_private *priv = netdev_priv(dev); struct ks_wlan_private *priv = netdev_priv(dev);
DPRINTK(2, "in_interrupt = %ld update_phyinfo = %d\n", netdev_dbg(dev, "in_interrupt = %ld update_phyinfo = %d\n",
in_interrupt(), atomic_read(&update_phyinfo)); in_interrupt(), atomic_read(&update_phyinfo));
if (priv->sleep_mode == SLP_SLEEP) if (priv->sleep_mode == SLP_SLEEP)
...@@ -1435,7 +1435,7 @@ static inline char *ks_wlan_translate_scan(struct net_device *dev, ...@@ -1435,7 +1435,7 @@ static inline char *ks_wlan_translate_scan(struct net_device *dev,
pbuf += sprintf(pbuf, "%02x", ap->rsn_ie.body[i]); pbuf += sprintf(pbuf, "%02x", ap->rsn_ie.body[i]);
iwe.u.data.length += (ap->rsn_ie.size) * 2; iwe.u.data.length += (ap->rsn_ie.size) * 2;
DPRINTK(4, "ap->rsn.size=%d\n", ap->rsn_ie.size); netdev_dbg(dev, "ap->rsn.size=%d\n", ap->rsn_ie.size);
current_ev = current_ev =
iwe_stream_add_point(info, current_ev, end_buf, &iwe, iwe_stream_add_point(info, current_ev, end_buf, &iwe,
...@@ -1457,8 +1457,8 @@ static inline char *ks_wlan_translate_scan(struct net_device *dev, ...@@ -1457,8 +1457,8 @@ static inline char *ks_wlan_translate_scan(struct net_device *dev,
pbuf += sprintf(pbuf, "%02x", ap->wpa_ie.body[i]); pbuf += sprintf(pbuf, "%02x", ap->wpa_ie.body[i]);
iwe.u.data.length += (ap->wpa_ie.size) * 2; iwe.u.data.length += (ap->wpa_ie.size) * 2;
DPRINTK(4, "ap->rsn.size=%d\n", ap->wpa_ie.size); netdev_dbg(dev, "ap->rsn.size=%d\n", ap->wpa_ie.size);
DPRINTK(4, "iwe.u.data.length=%d\n", iwe.u.data.length); netdev_dbg(dev, "iwe.u.data.length=%d\n", iwe.u.data.length);
current_ev = current_ev =
iwe_stream_add_point(info, current_ev, end_buf, &iwe, iwe_stream_add_point(info, current_ev, end_buf, &iwe,
...@@ -2320,7 +2320,7 @@ static int ks_wlan_set_wps_probe_req(struct net_device *dev, ...@@ -2320,7 +2320,7 @@ static int ks_wlan_set_wps_probe_req(struct net_device *dev,
memcpy(priv->wps.ie, &len, sizeof(len)); memcpy(priv->wps.ie, &len, sizeof(len));
p = memcpy(priv->wps.ie + 1, p, len); p = memcpy(priv->wps.ie + 1, p, len);
DPRINTK(2, "%d(%#x): %02X %02X %02X %02X ... %02X %02X %02X\n", netdev_dbg(dev, "%d(%#x): %02X %02X %02X %02X ... %02X %02X %02X\n",
priv->wps.ielen, priv->wps.ielen, p[0], p[1], p[2], p[3], priv->wps.ielen, priv->wps.ielen, p[0], p[1], p[2], p[3],
p[priv->wps.ielen - 3], p[priv->wps.ielen - 2], p[priv->wps.ielen - 3], p[priv->wps.ielen - 2],
p[priv->wps.ielen - 1]); p[priv->wps.ielen - 1]);
...@@ -2778,7 +2778,7 @@ void ks_wlan_tx_timeout(struct net_device *dev) ...@@ -2778,7 +2778,7 @@ void ks_wlan_tx_timeout(struct net_device *dev)
{ {
struct ks_wlan_private *priv = netdev_priv(dev); struct ks_wlan_private *priv = netdev_priv(dev);
DPRINTK(1, "head(%d) tail(%d)!!\n", priv->tx_dev.qhead, netdev_dbg(dev, "head(%d) tail(%d)!!\n", priv->tx_dev.qhead,
priv->tx_dev.qtail); priv->tx_dev.qtail);
if (!netif_queue_stopped(dev)) if (!netif_queue_stopped(dev))
netif_stop_queue(dev); netif_stop_queue(dev);
...@@ -2792,7 +2792,7 @@ int ks_wlan_start_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -2792,7 +2792,7 @@ int ks_wlan_start_xmit(struct sk_buff *skb, struct net_device *dev)
struct ks_wlan_private *priv = netdev_priv(dev); struct ks_wlan_private *priv = netdev_priv(dev);
int ret; int ret;
DPRINTK(3, "in_interrupt()=%ld\n", in_interrupt()); netdev_dbg(dev, "in_interrupt()=%ld\n", in_interrupt());
if (!skb) { if (!skb) {
netdev_err(dev, "ks_wlan: skb == NULL!!!\n"); netdev_err(dev, "ks_wlan: skb == NULL!!!\n");
...@@ -2810,7 +2810,7 @@ int ks_wlan_start_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -2810,7 +2810,7 @@ int ks_wlan_start_xmit(struct sk_buff *skb, struct net_device *dev)
netif_trans_update(dev); netif_trans_update(dev);
if (ret) if (ret)
DPRINTK(4, "hostif_data_request error: =%d\n", ret); netdev_err(dev, "hostif_data_request error: =%d\n", ret);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment