Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 337763
b: refs/heads/master
c: 53094af
h: refs/heads/master
i:
  337761: dc265e3
  337759: 8d0a843
v: v3
  • Loading branch information
Maxim Mikityanskiy authored and Greg Kroah-Hartman committed Nov 13, 2012
1 parent 0f45d18 commit f2f6ce1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 861437d2be466c107a7438bb7eede42c988e9137
refs/heads/master: 53094af120e326cd7e092e7d0e479181ca82ad13
1 change: 0 additions & 1 deletion trunk/drivers/staging/rtl8187se/r8180.h
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,6 @@ typedef struct r8180_priv
struct work_struct watch_dog_wq;
short ack_tx_to_ieee;

u8 PowerProfile;
u8 dma_poll_stop_mask;

//u8 RegThreeWireMode;
Expand Down
18 changes: 1 addition & 17 deletions trunk/drivers/staging/rtl8187se/r8180_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2480,7 +2480,6 @@ short rtl8180_init(struct net_device *dev)
priv->NumTxOkTotal = 0;
priv->NumTxUnicast = 0;
priv->keepAliveLevel = DEFAULT_KEEP_ALIVE_LEVEL;
priv->PowerProfile = POWER_PROFILE_AC;
priv->CurrRetryCnt = 0;
priv->LastRetryCnt = 0;
priv->LastTxokCnt = 0;
Expand Down Expand Up @@ -2927,8 +2926,6 @@ static void MgntLinkKeepAlive(struct r8180_priv *priv)
}
}

static u8 read_acadapter_file(char *filename);

void rtl8180_watch_dog(struct net_device *dev)
{
struct r8180_priv *priv = ieee80211_priv(dev);
Expand Down Expand Up @@ -2961,12 +2958,7 @@ void rtl8180_watch_dog(struct net_device *dev)
MgntLinkKeepAlive(priv);

/* YJ,add,080828,for LPS */
if (priv->PowerProfile == POWER_PROFILE_BATTERY)
priv->bLeisurePs = true;
else if (priv->PowerProfile == POWER_PROFILE_AC) {
LeisurePSLeave(priv);
priv->bLeisurePs = false;
}
LeisurePSLeave(priv);

if (priv->ieee80211->state == IEEE80211_LINKED) {
priv->link_detect.NumRxOkInPeriod = priv->ieee80211->NumRxDataInPeriod;
Expand Down Expand Up @@ -3735,9 +3727,6 @@ void GPIOChangeRFWorkItemCallBack(struct work_struct *work)
static char *envp[] = {"HOME=/", "TERM=linux", "PATH=/usr/bin:/bin", NULL};
static int readf_count = 0;

if (readf_count % 10 == 0)
priv->PowerProfile = read_acadapter_file("/proc/acpi/ac_adapter/AC0/state");

readf_count = (readf_count+1)%0xffff;
/* We should turn off LED before polling FF51[4]. */

Expand Down Expand Up @@ -3782,10 +3771,5 @@ void GPIOChangeRFWorkItemCallBack(struct work_struct *work)
}
}

static u8 read_acadapter_file(char *filename)
{
return 0;
}

module_init(rtl8180_pci_module_init);
module_exit(rtl8180_pci_module_exit);

0 comments on commit f2f6ce1

Please sign in to comment.