Skip to content

Commit

Permalink
staging: rtl8192e: Remove references to ENABLE_GPIO_RADIO_CTL
Browse files Browse the repository at this point in the history
This configuration variable is set in the make file.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent e755463 commit 5b774ec
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion drivers/staging/rtl8192e/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
ccflags-y += -DEEPROM_OLD_FORMAT_SUPPORT=1
ccflags-y += -DUSE_FW_SOURCE_IMG_FILE
ccflags-y += -DENABLE_GPIO_RADIO_CTL
ccflags-y += -DCONFIG_PM_RTL
ccflags-y += -DCONFIG_PM
ccflags-y += -DENABLE_DOT11D
Expand Down
6 changes: 0 additions & 6 deletions drivers/staging/rtl8192e/rtl_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1037,11 +1037,9 @@ int _rtl8192_sta_up(struct net_device *dev,bool is_silent_reset)
RT_CLEAR_PS_LEVEL(pPSC, RT_RF_OFF_LEVL_HALT_NIC);
priv->bfirst_init = false;

#ifdef ENABLE_GPIO_RADIO_CTL
if (priv->polling_timer_on == 0){
check_rfctrl_gpio_timer((unsigned long)dev);
}
#endif

if (priv->rtllib->state != RTLLIB_LINKED)
rtllib_softmac_start_protocol(priv->rtllib, 0);
Expand Down Expand Up @@ -3131,11 +3129,9 @@ static int __devinit rtl8192_pci_probe(struct pci_dev *pdev,
}
rtl8192_proc_init_one(dev);

#ifdef ENABLE_GPIO_RADIO_CTL
if (priv->polling_timer_on == 0){
check_rfctrl_gpio_timer((unsigned long)dev);
}
#endif
#ifdef CONFIG_RTL_RFKILL
if (priv->ops->init_before_adapter_start) {
priv->ops->init_before_adapter_start(dev);
Expand Down Expand Up @@ -3186,11 +3182,9 @@ static void __devexit rtl8192_pci_disconnect(struct pci_dev *pdev)

priv = rtllib_priv(dev);

#ifdef ENABLE_GPIO_RADIO_CTL
del_timer_sync(&priv->gpio_polling_timer);
cancel_delayed_work(&priv->gpio_change_rf_wq);
priv->polling_timer_on = 0;
#endif
rtl_debug_module_remove(priv);
rtl8192_proc_remove_one(dev);
rtl8192_down(dev,true);
Expand Down
4 changes: 0 additions & 4 deletions drivers/staging/rtl8192e/rtl_pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,9 @@ int rtl8192E_suspend (struct pci_dev *pdev, pm_message_t state)

RT_TRACE(COMP_POWER, "============> r8192E suspend call.\n");
printk("============> r8192E suspend call.\n");
#ifdef ENABLE_GPIO_RADIO_CTL
del_timer_sync(&priv->gpio_polling_timer);
cancel_delayed_work(&priv->gpio_change_rf_wq);
priv->polling_timer_on = 0;
#endif

if (!netif_running(dev)){
printk("RTL819XE:UI is open out of suspend function\n");
Expand Down Expand Up @@ -113,11 +111,9 @@ int rtl8192E_resume (struct pci_dev *pdev)

pci_enable_wake(pdev, PCI_D0, 0);

#ifdef ENABLE_GPIO_RADIO_CTL
if (priv->polling_timer_on == 0){
check_rfctrl_gpio_timer((unsigned long)dev);
}
#endif

if (!netif_running(dev)){
printk("RTL819XE:UI is open out of resume function\n");
Expand Down

0 comments on commit 5b774ec

Please sign in to comment.