Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 220287
b: refs/heads/master
c: 9927fc2
h: refs/heads/master
i:
  220285: 6c7add4
  220283: a517a51
  220279: f21e753
  220271: ba8d888
  220255: 450cc90
  220223: e2eacef
  220159: 4685ed6
v: v3
  • Loading branch information
Jason Cooper authored and Greg Kroah-Hartman committed Oct 12, 2010
1 parent b3c47ae commit 57703bb
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 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: b4f790eeb36564c7e4a5b38712f23ebc2b64b45a
refs/heads/master: 9927fc2eab153cf3c39d505733b1d534d818c2bb
1 change: 0 additions & 1 deletion trunk/drivers/staging/brcm80211/include/bcmdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
* The following macros specify special linker sections that can be reclaimed
* after a system is considered 'up'.
*/
#define BCMUNINITFN(_fn) _fn
#define BCMNMIATTACHFN(_fn) _fn
#ifdef mips
#define BCMFASTPATH __attribute__ ((__section__(".text.fastpath")))
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/phy/wlc_phy_cmn.c
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ void wlc_phy_cal_init(wlc_phy_t *pih)
}
}

int BCMUNINITFN(wlc_phy_down) (wlc_phy_t *pih)
int wlc_phy_down(wlc_phy_t *pih)
{
phy_info_t *pi = (phy_info_t *) pih;
int callbacks = 0;
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/brcm80211/sys/wlc_bmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,7 @@ int wlc_bmac_up_finish(wlc_hw_info_t *wlc_hw)
return 0;
}

int BCMUNINITFN(wlc_bmac_down_prep) (wlc_hw_info_t *wlc_hw)
int wlc_bmac_down_prep(wlc_hw_info_t *wlc_hw)
{
bool dev_gone;
uint callbacks = 0;
Expand Down Expand Up @@ -1277,7 +1277,7 @@ int BCMUNINITFN(wlc_bmac_down_prep) (wlc_hw_info_t *wlc_hw)
return callbacks;
}

int BCMUNINITFN(wlc_bmac_down_finish) (wlc_hw_info_t *wlc_hw)
int wlc_bmac_down_finish(wlc_hw_info_t *wlc_hw)
{
uint callbacks = 0;
bool dev_gone;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/sys/wlc_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ int wlc_eventq_detach(wlc_eventq_t *eq)
return 0;
}

int BCMUNINITFN(wlc_eventq_down) (wlc_eventq_t *eq)
int wlc_eventq_down(wlc_eventq_t *eq)
{
int callbacks = 0;
if (eq->tpending && !eq->workpending) {
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/brcm80211/sys/wlc_mac80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -2846,7 +2846,7 @@ static void wlc_tx_prec_map_init(wlc_info_t *wlc)
}
}

static uint BCMUNINITFN(wlc_down_del_timer) (wlc_info_t *wlc)
static uint wlc_down_del_timer(wlc_info_t *wlc)
{
uint callbacks = 0;

Expand All @@ -2858,7 +2858,7 @@ static uint BCMUNINITFN(wlc_down_del_timer) (wlc_info_t *wlc)
* disable the hardware, free any transient buffer state.
* Return a count of the number of driver callbacks still pending.
*/
uint BCMUNINITFN(wlc_down) (wlc_info_t *wlc)
uint wlc_down(wlc_info_t *wlc)
{

uint callbacks = 0;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/util/nvram/nvram_ro.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ int nvram_append(void *si, char *varlst, uint varsz)
return BCME_OK;
}

void BCMUNINITFN(nvram_exit) (void *si)
void nvram_exit(void *si)
{
vars_t *this, *next;
si_t *sih;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/util/siutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -1631,7 +1631,7 @@ void si_pci_up(si_t *sih)
}

/* Unconfigure and/or apply various WARs when system is going to sleep mode */
void BCMUNINITFN(si_pci_sleep) (si_t *sih)
void si_pci_sleep(si_t *sih)
{
si_info_t *sii;

Expand Down

0 comments on commit 57703bb

Please sign in to comment.