Skip to content

Commit

Permalink
staging: brcm80211: remove BCMUNINITFN() macro.
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Jason Cooper authored and Greg Kroah-Hartman committed Oct 12, 2010
1 parent b4f790e commit 9927fc2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion 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 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 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 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 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 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 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 9927fc2

Please sign in to comment.