Staging: winbond: wbusb: Fixed coding style issue
Removed unnecessary printk and pr_debug tracing calls Signed-off-by: Adil Mujeeb <mujeeb.adil@gmail.com> Acked-by: Pavel Machek <pavel@ucw.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
466cd9f530
commit
c299647f0c
|
@ -79,18 +79,15 @@ static int wbsoft_add_interface(struct ieee80211_hw *dev,
|
||||||
static void wbsoft_remove_interface(struct ieee80211_hw *dev,
|
static void wbsoft_remove_interface(struct ieee80211_hw *dev,
|
||||||
struct ieee80211_vif *vif)
|
struct ieee80211_vif *vif)
|
||||||
{
|
{
|
||||||
printk("wbsoft_remove interface called\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void wbsoft_stop(struct ieee80211_hw *hw)
|
static void wbsoft_stop(struct ieee80211_hw *hw)
|
||||||
{
|
{
|
||||||
printk(KERN_INFO "%s called\n", __func__);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int wbsoft_get_stats(struct ieee80211_hw *hw,
|
static int wbsoft_get_stats(struct ieee80211_hw *hw,
|
||||||
struct ieee80211_low_level_stats *stats)
|
struct ieee80211_low_level_stats *stats)
|
||||||
{
|
{
|
||||||
printk(KERN_INFO "%s called\n", __func__);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -179,12 +176,9 @@ static void hal_set_current_channel_ex(struct hw_data *pHwData, struct chan_info
|
||||||
if (pHwData->SurpriseRemove)
|
if (pHwData->SurpriseRemove)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
printk("Going to channel: %d/%d\n", channel.band, channel.ChanNo);
|
|
||||||
|
|
||||||
RFSynthesizer_SwitchingChannel(pHwData, channel); /* Switch channel */
|
RFSynthesizer_SwitchingChannel(pHwData, channel); /* Switch channel */
|
||||||
pHwData->Channel = channel.ChanNo;
|
pHwData->Channel = channel.ChanNo;
|
||||||
pHwData->band = channel.band;
|
pHwData->band = channel.band;
|
||||||
pr_debug("Set channel is %d, band =%d\n", pHwData->Channel, pHwData->band);
|
|
||||||
reg->M28_MacControl &= ~0xff; /* Clean channel information field */
|
reg->M28_MacControl &= ~0xff; /* Clean channel information field */
|
||||||
reg->M28_MacControl |= channel.ChanNo;
|
reg->M28_MacControl |= channel.ChanNo;
|
||||||
Wb35Reg_WriteWithCallbackValue(pHwData, 0x0828, reg->M28_MacControl,
|
Wb35Reg_WriteWithCallbackValue(pHwData, 0x0828, reg->M28_MacControl,
|
||||||
|
@ -264,8 +258,6 @@ static int wbsoft_config(struct ieee80211_hw *dev, u32 changed)
|
||||||
struct wbsoft_priv *priv = dev->priv;
|
struct wbsoft_priv *priv = dev->priv;
|
||||||
struct chan_info ch;
|
struct chan_info ch;
|
||||||
|
|
||||||
printk("wbsoft_config called\n");
|
|
||||||
|
|
||||||
/* Should use channel_num, or something, as that is already pre-translated */
|
/* Should use channel_num, or something, as that is already pre-translated */
|
||||||
ch.band = 1;
|
ch.band = 1;
|
||||||
ch.ChanNo = 1;
|
ch.ChanNo = 1;
|
||||||
|
@ -282,7 +274,6 @@ static int wbsoft_config(struct ieee80211_hw *dev, u32 changed)
|
||||||
|
|
||||||
static u64 wbsoft_get_tsf(struct ieee80211_hw *dev, struct ieee80211_vif *vif)
|
static u64 wbsoft_get_tsf(struct ieee80211_hw *dev, struct ieee80211_vif *vif)
|
||||||
{
|
{
|
||||||
printk("wbsoft_get_tsf called\n");
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -716,7 +707,6 @@ static int wb35_hw_init(struct ieee80211_hw *hw)
|
||||||
}
|
}
|
||||||
|
|
||||||
priv->sLocalPara.bAntennaNo = hal_get_antenna_number(pHwData);
|
priv->sLocalPara.bAntennaNo = hal_get_antenna_number(pHwData);
|
||||||
pr_debug("Driver init, antenna no = %d\n", priv->sLocalPara.bAntennaNo);
|
|
||||||
hal_get_hw_radio_off(pHwData);
|
hal_get_hw_radio_off(pHwData);
|
||||||
|
|
||||||
/* Waiting for HAL setting OK */
|
/* Waiting for HAL setting OK */
|
||||||
|
@ -782,9 +772,6 @@ static int wb35_probe(struct usb_interface *intf,
|
||||||
interface = intf->cur_altsetting;
|
interface = intf->cur_altsetting;
|
||||||
endpoint = &interface->endpoint[0].desc;
|
endpoint = &interface->endpoint[0].desc;
|
||||||
|
|
||||||
if (endpoint[2].wMaxPacketSize == 512)
|
|
||||||
printk("[w35und] Working on USB 2.0\n");
|
|
||||||
|
|
||||||
err = wb35_hw_init(dev);
|
err = wb35_hw_init(dev);
|
||||||
if (err)
|
if (err)
|
||||||
goto error_free_hw;
|
goto error_free_hw;
|
||||||
|
@ -836,7 +823,6 @@ static void wb35_hw_halt(struct wbsoft_priv *adapter)
|
||||||
{
|
{
|
||||||
/* Turn off Rx and Tx hardware ability */
|
/* Turn off Rx and Tx hardware ability */
|
||||||
hal_stop(&adapter->sHwData);
|
hal_stop(&adapter->sHwData);
|
||||||
pr_debug("[w35und] Hal_stop O.K.\n");
|
|
||||||
/* Waiting Irp completed */
|
/* Waiting Irp completed */
|
||||||
msleep(100);
|
msleep(100);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue