提交 b4f790ee 编写于 作者: J Jason Cooper 提交者: Greg Kroah-Hartman

staging: brcm80211: remove BCMINITFN() macro.

Signed-off-by: NJason Cooper <jason@lakedaemon.net>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 2184ccb9
...@@ -34,7 +34,6 @@ ...@@ -34,7 +34,6 @@
* The following macros specify special linker sections that can be reclaimed * The following macros specify special linker sections that can be reclaimed
* after a system is considered 'up'. * after a system is considered 'up'.
*/ */
#define BCMINITFN(_fn) _fn
#define BCMUNINITFN(_fn) _fn #define BCMUNINITFN(_fn) _fn
#define BCMNMIATTACHFN(_fn) _fn #define BCMNMIATTACHFN(_fn) _fn
#ifdef mips #ifdef mips
......
...@@ -75,7 +75,7 @@ extern char *nvram_get(const char *name); ...@@ -75,7 +75,7 @@ extern char *nvram_get(const char *name);
* Read the reset GPIO value from the nvram and set the GPIO * Read the reset GPIO value from the nvram and set the GPIO
* as input * as input
*/ */
extern int BCMINITFN(nvram_resetgpio_init) (void *sih); extern int nvram_resetgpio_init(void *sih);
/* /*
* Get the value of an NVRAM variable. * Get the value of an NVRAM variable.
......
...@@ -1031,7 +1031,7 @@ void WLBANDINITFN(wlc_phy_init) (wlc_phy_t *pih, chanspec_t chanspec) ...@@ -1031,7 +1031,7 @@ void WLBANDINITFN(wlc_phy_init) (wlc_phy_t *pih, chanspec_t chanspec)
pi->init_in_progress = FALSE; pi->init_in_progress = FALSE;
} }
void BCMINITFN(wlc_phy_cal_init) (wlc_phy_t *pih) void wlc_phy_cal_init(wlc_phy_t *pih)
{ {
phy_info_t *pi = (phy_info_t *) pih; phy_info_t *pi = (phy_info_t *) pih;
initfn_t cal_init = NULL; initfn_t cal_init = NULL;
......
...@@ -1119,7 +1119,7 @@ int wlc_bmac_detach(wlc_info_t *wlc) ...@@ -1119,7 +1119,7 @@ int wlc_bmac_detach(wlc_info_t *wlc)
} }
void BCMINITFN(wlc_bmac_reset) (wlc_hw_info_t *wlc_hw) void wlc_bmac_reset(wlc_hw_info_t *wlc_hw)
{ {
WL_TRACE(("wl%d: wlc_bmac_reset\n", wlc_hw->unit)); WL_TRACE(("wl%d: wlc_bmac_reset\n", wlc_hw->unit));
...@@ -1136,7 +1136,7 @@ void BCMINITFN(wlc_bmac_reset) (wlc_hw_info_t *wlc_hw) ...@@ -1136,7 +1136,7 @@ void BCMINITFN(wlc_bmac_reset) (wlc_hw_info_t *wlc_hw)
} }
void void
BCMINITFN(wlc_bmac_init) (wlc_hw_info_t *wlc_hw, chanspec_t chanspec, wlc_bmac_init(wlc_hw_info_t *wlc_hw, chanspec_t chanspec,
bool mute) { bool mute) {
u32 macintmask; u32 macintmask;
bool fastclk; bool fastclk;
...@@ -1187,7 +1187,7 @@ BCMINITFN(wlc_bmac_init) (wlc_hw_info_t *wlc_hw, chanspec_t chanspec, ...@@ -1187,7 +1187,7 @@ BCMINITFN(wlc_bmac_init) (wlc_hw_info_t *wlc_hw, chanspec_t chanspec,
wlc_clkctl_clk(wlc_hw, CLK_DYNAMIC); wlc_clkctl_clk(wlc_hw, CLK_DYNAMIC);
} }
int BCMINITFN(wlc_bmac_up_prep) (wlc_hw_info_t *wlc_hw) int wlc_bmac_up_prep(wlc_hw_info_t *wlc_hw)
{ {
uint coremask; uint coremask;
...@@ -1235,7 +1235,7 @@ int BCMINITFN(wlc_bmac_up_prep) (wlc_hw_info_t *wlc_hw) ...@@ -1235,7 +1235,7 @@ int BCMINITFN(wlc_bmac_up_prep) (wlc_hw_info_t *wlc_hw)
return 0; return 0;
} }
int BCMINITFN(wlc_bmac_up_finish) (wlc_hw_info_t *wlc_hw) int wlc_bmac_up_finish(wlc_hw_info_t *wlc_hw)
{ {
WL_TRACE(("wl%d: %s:\n", wlc_hw->unit, __func__)); WL_TRACE(("wl%d: %s:\n", wlc_hw->unit, __func__));
...@@ -1456,7 +1456,7 @@ static void wlc_clkctl_clk(wlc_hw_info_t *wlc_hw, uint mode) ...@@ -1456,7 +1456,7 @@ static void wlc_clkctl_clk(wlc_hw_info_t *wlc_hw, uint mode)
/* set initial host flags value */ /* set initial host flags value */
static void static void
BCMINITFN(wlc_mhfdef) (wlc_info_t *wlc, u16 *mhfs, u16 mhf2_init) wlc_mhfdef(wlc_info_t *wlc, u16 *mhfs, u16 mhf2_init)
{ {
wlc_hw_info_t *wlc_hw = wlc->hw; wlc_hw_info_t *wlc_hw = wlc->hw;
...@@ -2176,7 +2176,7 @@ static bool wlc_validboardtype(wlc_hw_info_t *wlc_hw) ...@@ -2176,7 +2176,7 @@ static bool wlc_validboardtype(wlc_hw_info_t *wlc_hw)
return goodboard; return goodboard;
} }
static char *BCMINITFN(wlc_get_macaddr) (wlc_hw_info_t *wlc_hw) static char *wlc_get_macaddr(wlc_hw_info_t *wlc_hw)
{ {
const char *varname = "macaddr"; const char *varname = "macaddr";
char *macaddr; char *macaddr;
...@@ -2251,7 +2251,7 @@ bool wlc_bmac_radio_read_hwdisabled(wlc_hw_info_t *wlc_hw) ...@@ -2251,7 +2251,7 @@ bool wlc_bmac_radio_read_hwdisabled(wlc_hw_info_t *wlc_hw)
} }
/* Initialize just the hardware when coming out of POR or S3/S5 system states */ /* Initialize just the hardware when coming out of POR or S3/S5 system states */
void BCMINITFN(wlc_bmac_hw_up) (wlc_hw_info_t *wlc_hw) void wlc_bmac_hw_up(wlc_hw_info_t *wlc_hw)
{ {
if (wlc_hw->wlc->pub->hw_up) if (wlc_hw->wlc->pub->hw_up)
return; return;
...@@ -2326,7 +2326,7 @@ static bool wlc_dma_rxreset(wlc_hw_info_t *wlc_hw, uint fifo) ...@@ -2326,7 +2326,7 @@ static bool wlc_dma_rxreset(wlc_hw_info_t *wlc_hw, uint fifo)
* clear software macintstatus for fresh new start * clear software macintstatus for fresh new start
* one testing hack wlc_hw->noreset will bypass the d11/phy reset * one testing hack wlc_hw->noreset will bypass the d11/phy reset
*/ */
void BCMINITFN(wlc_bmac_corereset) (wlc_hw_info_t *wlc_hw, u32 flags) void wlc_bmac_corereset(wlc_hw_info_t *wlc_hw, u32 flags)
{ {
d11regs_t *regs; d11regs_t *regs;
uint i; uint i;
...@@ -2415,7 +2415,7 @@ void BCMINITFN(wlc_bmac_corereset) (wlc_hw_info_t *wlc_hw, u32 flags) ...@@ -2415,7 +2415,7 @@ void BCMINITFN(wlc_bmac_corereset) (wlc_hw_info_t *wlc_hw, u32 flags)
* txfifo sizes needs to be modified(increased) since the newer cores * txfifo sizes needs to be modified(increased) since the newer cores
* have more memory. * have more memory.
*/ */
static void BCMINITFN(wlc_corerev_fifofixup) (wlc_hw_info_t *wlc_hw) static void wlc_corerev_fifofixup(wlc_hw_info_t *wlc_hw)
{ {
d11regs_t *regs = wlc_hw->regs; d11regs_t *regs = wlc_hw->regs;
u16 fifo_nu; u16 fifo_nu;
...@@ -2475,7 +2475,7 @@ static void BCMINITFN(wlc_corerev_fifofixup) (wlc_hw_info_t *wlc_hw) ...@@ -2475,7 +2475,7 @@ static void BCMINITFN(wlc_corerev_fifofixup) (wlc_hw_info_t *wlc_hw)
* config other core registers * config other core registers
* init dma * init dma
*/ */
static void BCMINITFN(wlc_coreinit) (wlc_info_t *wlc) static void wlc_coreinit(wlc_info_t *wlc)
{ {
wlc_hw_info_t *wlc_hw = wlc->hw; wlc_hw_info_t *wlc_hw = wlc->hw;
d11regs_t *regs; d11regs_t *regs;
...@@ -2717,7 +2717,7 @@ void wlc_bmac_switch_macfreq(wlc_hw_info_t *wlc_hw, u8 spurmode) ...@@ -2717,7 +2717,7 @@ void wlc_bmac_switch_macfreq(wlc_hw_info_t *wlc_hw, u8 spurmode)
} }
/* Initialize GPIOs that are controlled by D11 core */ /* Initialize GPIOs that are controlled by D11 core */
static void BCMINITFN(wlc_gpio_init) (wlc_info_t *wlc) static void wlc_gpio_init(wlc_info_t *wlc)
{ {
wlc_hw_info_t *wlc_hw = wlc->hw; wlc_hw_info_t *wlc_hw = wlc->hw;
d11regs_t *regs; d11regs_t *regs;
......
...@@ -381,7 +381,7 @@ bool wlc_ps_allowed(wlc_info_t *wlc) ...@@ -381,7 +381,7 @@ bool wlc_ps_allowed(wlc_info_t *wlc)
return TRUE; return TRUE;
} }
void BCMINITFN(wlc_reset) (wlc_info_t *wlc) void wlc_reset(wlc_info_t *wlc)
{ {
WL_TRACE(("wl%d: wlc_reset\n", wlc->pub->unit)); WL_TRACE(("wl%d: wlc_reset\n", wlc->pub->unit));
...@@ -428,7 +428,7 @@ void wlc_fatal_error(wlc_info_t *wlc) ...@@ -428,7 +428,7 @@ void wlc_fatal_error(wlc_info_t *wlc)
* if other configurations are in conflict (bandlocked, 11n mode disabled, * if other configurations are in conflict (bandlocked, 11n mode disabled,
* invalid channel for current country, etc.) * invalid channel for current country, etc.)
*/ */
static chanspec_t BCMINITFN(wlc_init_chanspec) (wlc_info_t *wlc) static chanspec_t wlc_init_chanspec(wlc_info_t *wlc)
{ {
chanspec_t chanspec = chanspec_t chanspec =
1 | WL_CHANSPEC_BW_20 | WL_CHANSPEC_CTL_SB_NONE | 1 | WL_CHANSPEC_BW_20 | WL_CHANSPEC_CTL_SB_NONE |
...@@ -452,7 +452,7 @@ static void wlc_init_scb(wlc_info_t *wlc, struct scb *scb) ...@@ -452,7 +452,7 @@ static void wlc_init_scb(wlc_info_t *wlc, struct scb *scb)
scb->seqnum[i] = 0; scb->seqnum[i] = 0;
} }
void BCMINITFN(wlc_init) (wlc_info_t *wlc) void wlc_init(wlc_info_t *wlc)
{ {
d11regs_t *regs; d11regs_t *regs;
chanspec_t chanspec; chanspec_t chanspec;
...@@ -2719,7 +2719,7 @@ static void wlc_watchdog(void *arg) ...@@ -2719,7 +2719,7 @@ static void wlc_watchdog(void *arg)
} }
/* make interface operational */ /* make interface operational */
int BCMINITFN(wlc_up) (wlc_info_t *wlc) int wlc_up(wlc_info_t *wlc)
{ {
WL_TRACE(("wl%d: %s:\n", wlc->pub->unit, __func__)); WL_TRACE(("wl%d: %s:\n", wlc->pub->unit, __func__));
...@@ -2827,7 +2827,7 @@ int BCMINITFN(wlc_up) (wlc_info_t *wlc) ...@@ -2827,7 +2827,7 @@ int BCMINITFN(wlc_up) (wlc_info_t *wlc)
} }
/* Initialize the base precedence map for dequeueing from txq based on WME settings */ /* Initialize the base precedence map for dequeueing from txq based on WME settings */
static void BCMINITFN(wlc_tx_prec_map_init) (wlc_info_t *wlc) static void wlc_tx_prec_map_init(wlc_info_t *wlc)
{ {
wlc->tx_prec_map = WLC_PREC_BMP_ALL; wlc->tx_prec_map = WLC_PREC_BMP_ALL;
bzero(wlc->fifo2prec_map, sizeof(u16) * NFIFO); bzero(wlc->fifo2prec_map, sizeof(u16) * NFIFO);
......
...@@ -184,7 +184,7 @@ void si_pmu_set_ldo_voltage(si_t *sih, osl_t *osh, u8 ldo, u8 voltage) ...@@ -184,7 +184,7 @@ void si_pmu_set_ldo_voltage(si_t *sih, osl_t *osh, u8 ldo, u8 voltage)
/* d11 slow to fast clock transition time in slow clock cycles */ /* d11 slow to fast clock transition time in slow clock cycles */
#define D11SCC_SLOW2FAST_TRANSITION 2 #define D11SCC_SLOW2FAST_TRANSITION 2
u16 BCMINITFN(si_pmu_fast_pwrup_delay) (si_t *sih, osl_t *osh) u16 si_pmu_fast_pwrup_delay(si_t *sih, osl_t *osh)
{ {
uint delay = PMU_MAX_TRANSITION_DLY; uint delay = PMU_MAX_TRANSITION_DLY;
chipcregs_t *cc; chipcregs_t *cc;
...@@ -1092,7 +1092,7 @@ static const pmu1_xtaltab0_t pmu1_xtaltab0_960[] = { ...@@ -1092,7 +1092,7 @@ static const pmu1_xtaltab0_t pmu1_xtaltab0_960[] = {
#define PMU1_XTALTAB0_960_48000K 15 #define PMU1_XTALTAB0_960_48000K 15
/* select xtal table for each chip */ /* select xtal table for each chip */
static const pmu1_xtaltab0_t *BCMINITFN(si_pmu1_xtaltab0) (si_t *sih) static const pmu1_xtaltab0_t *si_pmu1_xtaltab0(si_t *sih)
{ {
#ifdef BCMDBG #ifdef BCMDBG
char chn[8]; char chn[8];
...@@ -1119,7 +1119,7 @@ static const pmu1_xtaltab0_t *BCMINITFN(si_pmu1_xtaltab0) (si_t *sih) ...@@ -1119,7 +1119,7 @@ static const pmu1_xtaltab0_t *BCMINITFN(si_pmu1_xtaltab0) (si_t *sih)
} }
/* select default xtal frequency for each chip */ /* select default xtal frequency for each chip */
static const pmu1_xtaltab0_t *BCMINITFN(si_pmu1_xtaldef0) (si_t *sih) static const pmu1_xtaltab0_t *si_pmu1_xtaldef0(si_t *sih)
{ {
#ifdef BCMDBG #ifdef BCMDBG
char chn[8]; char chn[8];
...@@ -1151,7 +1151,7 @@ static const pmu1_xtaltab0_t *BCMINITFN(si_pmu1_xtaldef0) (si_t *sih) ...@@ -1151,7 +1151,7 @@ static const pmu1_xtaltab0_t *BCMINITFN(si_pmu1_xtaldef0) (si_t *sih)
} }
/* select default pll fvco for each chip */ /* select default pll fvco for each chip */
static u32 BCMINITFN(si_pmu1_pllfvco0) (si_t *sih) static u32 si_pmu1_pllfvco0(si_t *sih)
{ {
#ifdef BCMDBG #ifdef BCMDBG
char chn[8]; char chn[8];
...@@ -1180,7 +1180,7 @@ static u32 BCMINITFN(si_pmu1_pllfvco0) (si_t *sih) ...@@ -1180,7 +1180,7 @@ static u32 BCMINITFN(si_pmu1_pllfvco0) (si_t *sih)
/* query alp/xtal clock frequency */ /* query alp/xtal clock frequency */
static u32 static u32
BCMINITFN(si_pmu1_alpclk0) (si_t *sih, osl_t *osh, chipcregs_t *cc) si_pmu1_alpclk0(si_t *sih, osl_t *osh, chipcregs_t *cc)
{ {
const pmu1_xtaltab0_t *xt; const pmu1_xtaltab0_t *xt;
u32 xf; u32 xf;
...@@ -1450,7 +1450,7 @@ static void si_pmu1_pllinit0(si_t *sih, osl_t *osh, chipcregs_t *cc, u32 xtal) ...@@ -1450,7 +1450,7 @@ static void si_pmu1_pllinit0(si_t *sih, osl_t *osh, chipcregs_t *cc, u32 xtal)
/* query the CPU clock frequency */ /* query the CPU clock frequency */
static u32 static u32
BCMINITFN(si_pmu1_cpuclk0) (si_t *sih, osl_t *osh, chipcregs_t *cc) si_pmu1_cpuclk0(si_t *sih, osl_t *osh, chipcregs_t *cc)
{ {
u32 tmp, m1div; u32 tmp, m1div;
#ifdef BCMDBG #ifdef BCMDBG
...@@ -1557,7 +1557,7 @@ void si_pmu_pll_init(si_t *sih, osl_t *osh, uint xtalfreq) ...@@ -1557,7 +1557,7 @@ void si_pmu_pll_init(si_t *sih, osl_t *osh, uint xtalfreq)
} }
/* query alp/xtal clock frequency */ /* query alp/xtal clock frequency */
u32 BCMINITFN(si_pmu_alp_clock) (si_t *sih, osl_t *osh) u32 si_pmu_alp_clock(si_t *sih, osl_t *osh)
{ {
chipcregs_t *cc; chipcregs_t *cc;
uint origidx; uint origidx;
...@@ -1618,7 +1618,7 @@ u32 BCMINITFN(si_pmu_alp_clock) (si_t *sih, osl_t *osh) ...@@ -1618,7 +1618,7 @@ u32 BCMINITFN(si_pmu_alp_clock) (si_t *sih, osl_t *osh)
* pllreg "pll0" i.e. 12 for main 6 for phy, 0 for misc. * pllreg "pll0" i.e. 12 for main 6 for phy, 0 for misc.
*/ */
static u32 static u32
BCMINITFN(si_pmu5_clock) (si_t *sih, osl_t *osh, chipcregs_t *cc, uint pll0, si_pmu5_clock(si_t *sih, osl_t *osh, chipcregs_t *cc, uint pll0,
uint m) { uint m) {
u32 tmp, div, ndiv, p1, p2, fc; u32 tmp, div, ndiv, p1, p2, fc;
...@@ -1671,7 +1671,7 @@ BCMINITFN(si_pmu5_clock) (si_t *sih, osl_t *osh, chipcregs_t *cc, uint pll0, ...@@ -1671,7 +1671,7 @@ BCMINITFN(si_pmu5_clock) (si_t *sih, osl_t *osh, chipcregs_t *cc, uint pll0,
/* For designs that feed the same clock to both backplane /* For designs that feed the same clock to both backplane
* and CPU just return the CPU clock speed. * and CPU just return the CPU clock speed.
*/ */
u32 BCMINITFN(si_pmu_si_clock) (si_t *sih, osl_t *osh) u32 si_pmu_si_clock(si_t *sih, osl_t *osh)
{ {
chipcregs_t *cc; chipcregs_t *cc;
uint origidx; uint origidx;
...@@ -1750,7 +1750,7 @@ u32 BCMINITFN(si_pmu_si_clock) (si_t *sih, osl_t *osh) ...@@ -1750,7 +1750,7 @@ u32 BCMINITFN(si_pmu_si_clock) (si_t *sih, osl_t *osh)
} }
/* query CPU clock frequency */ /* query CPU clock frequency */
u32 BCMINITFN(si_pmu_cpu_clock) (si_t *sih, osl_t *osh) u32 si_pmu_cpu_clock(si_t *sih, osl_t *osh)
{ {
chipcregs_t *cc; chipcregs_t *cc;
uint origidx; uint origidx;
...@@ -1794,7 +1794,7 @@ u32 BCMINITFN(si_pmu_cpu_clock) (si_t *sih, osl_t *osh) ...@@ -1794,7 +1794,7 @@ u32 BCMINITFN(si_pmu_cpu_clock) (si_t *sih, osl_t *osh)
} }
/* query memory clock frequency */ /* query memory clock frequency */
u32 BCMINITFN(si_pmu_mem_clock) (si_t *sih, osl_t *osh) u32 si_pmu_mem_clock(si_t *sih, osl_t *osh)
{ {
chipcregs_t *cc; chipcregs_t *cc;
uint origidx; uint origidx;
...@@ -1843,7 +1843,7 @@ u32 BCMINITFN(si_pmu_mem_clock) (si_t *sih, osl_t *osh) ...@@ -1843,7 +1843,7 @@ u32 BCMINITFN(si_pmu_mem_clock) (si_t *sih, osl_t *osh)
static u32 ilpcycles_per_sec; static u32 ilpcycles_per_sec;
u32 BCMINITFN(si_pmu_ilp_clock) (si_t *sih, osl_t *osh) u32 si_pmu_ilp_clock(si_t *sih, osl_t *osh)
{ {
if (ISSIM_ENAB(sih)) if (ISSIM_ENAB(sih))
return ILP_CLOCK; return ILP_CLOCK;
...@@ -1907,7 +1907,7 @@ static const sdiod_drive_str_t sdiod_drive_strength_tab3[] = { ...@@ -1907,7 +1907,7 @@ static const sdiod_drive_str_t sdiod_drive_strength_tab3[] = {
#define SDIOD_DRVSTR_KEY(chip, pmu) (((chip) << 16) | (pmu)) #define SDIOD_DRVSTR_KEY(chip, pmu) (((chip) << 16) | (pmu))
void void
BCMINITFN(si_sdiod_drive_strength_init) (si_t *sih, osl_t *osh, si_sdiod_drive_strength_init(si_t *sih, osl_t *osh,
u32 drivestrength) { u32 drivestrength) {
chipcregs_t *cc; chipcregs_t *cc;
uint origidx, intr_val = 0; uint origidx, intr_val = 0;
...@@ -2010,7 +2010,7 @@ void si_pmu_init(si_t *sih, osl_t *osh) ...@@ -2010,7 +2010,7 @@ void si_pmu_init(si_t *sih, osl_t *osh)
/* Return up time in ILP cycles for the given resource. */ /* Return up time in ILP cycles for the given resource. */
static uint static uint
BCMINITFN(si_pmu_res_uptime) (si_t *sih, osl_t *osh, chipcregs_t *cc, si_pmu_res_uptime(si_t *sih, osl_t *osh, chipcregs_t *cc,
u8 rsrc) { u8 rsrc) {
u32 deps; u32 deps;
uint up, i, dup, dmax; uint up, i, dup, dmax;
......
...@@ -545,7 +545,7 @@ static void pcie_war_serdes(pcicore_info_t *pi) ...@@ -545,7 +545,7 @@ static void pcie_war_serdes(pcicore_info_t *pi)
/* Fix MISC config to allow coming out of L2/L3-Ready state w/o PRST */ /* Fix MISC config to allow coming out of L2/L3-Ready state w/o PRST */
/* Needs to happen when coming out of 'standby'/'hibernate' */ /* Needs to happen when coming out of 'standby'/'hibernate' */
static void BCMINITFN(pcie_misc_config_fixup) (pcicore_info_t *pi) static void pcie_misc_config_fixup(pcicore_info_t *pi)
{ {
sbpcieregs_t *pcieregs = pi->regs.pcieregs; sbpcieregs_t *pcieregs = pi->regs.pcieregs;
u16 val16, *reg16; u16 val16, *reg16;
......
...@@ -47,7 +47,7 @@ static char *findvar(char *vars, char *lim, const char *name); ...@@ -47,7 +47,7 @@ static char *findvar(char *vars, char *lim, const char *name);
#if defined(FLASH) #if defined(FLASH)
/* copy flash to ram */ /* copy flash to ram */
static void BCMINITFN(get_flash_nvram) (si_t *sih, struct nvram_header *nvh) static void get_flash_nvram(si_t *sih, struct nvram_header *nvh)
{ {
osl_t *osh; osl_t *osh;
uint nvs, bufsz; uint nvs, bufsz;
......
...@@ -67,7 +67,7 @@ static void si_nvram_process(si_info_t *sii, char *pvars); ...@@ -67,7 +67,7 @@ static void si_nvram_process(si_info_t *sii, char *pvars);
static char *si_devpathvar(si_t *sih, char *var, int len, const char *name); static char *si_devpathvar(si_t *sih, char *var, int len, const char *name);
static bool _si_clkctl_cc(si_info_t *sii, uint mode); static bool _si_clkctl_cc(si_info_t *sii, uint mode);
static bool si_ispcie(si_info_t *sii); static bool si_ispcie(si_info_t *sii);
static uint BCMINITFN(socram_banksize) (si_info_t *sii, sbsocramregs_t *r, static uint socram_banksize(si_info_t *sii, sbsocramregs_t *r,
u8 idx, u8 mtype); u8 idx, u8 mtype);
/* global variable to indicate reservation/release of gpio's */ /* global variable to indicate reservation/release of gpio's */
...@@ -996,7 +996,7 @@ void si_core_reset(si_t *sih, u32 bits, u32 resetbits) ...@@ -996,7 +996,7 @@ void si_core_reset(si_t *sih, u32 bits, u32 resetbits)
#endif #endif
} }
u32 BCMINITFN(si_alp_clock) (si_t *sih) u32 si_alp_clock(si_t *sih)
{ {
if (PMUCTL_ENAB(sih)) if (PMUCTL_ENAB(sih))
return si_pmu_alp_clock(sih, si_osh(sih)); return si_pmu_alp_clock(sih, si_osh(sih));
...@@ -1004,7 +1004,7 @@ u32 BCMINITFN(si_alp_clock) (si_t *sih) ...@@ -1004,7 +1004,7 @@ u32 BCMINITFN(si_alp_clock) (si_t *sih)
return ALP_CLOCK; return ALP_CLOCK;
} }
u32 BCMINITFN(si_ilp_clock) (si_t *sih) u32 si_ilp_clock(si_t *sih)
{ {
if (PMUCTL_ENAB(sih)) if (PMUCTL_ENAB(sih))
return si_pmu_ilp_clock(sih, si_osh(sih)); return si_pmu_ilp_clock(sih, si_osh(sih));
...@@ -1146,7 +1146,7 @@ static uint si_slowclk_freq(si_info_t *sii, bool max_freq, chipcregs_t *cc) ...@@ -1146,7 +1146,7 @@ static uint si_slowclk_freq(si_info_t *sii, bool max_freq, chipcregs_t *cc)
return 0; return 0;
} }
static void BCMINITFN(si_clkctl_setdelay) (si_info_t *sii, void *chipcregs) static void si_clkctl_setdelay(si_info_t *sii, void *chipcregs)
{ {
chipcregs_t *cc = (chipcregs_t *) chipcregs; chipcregs_t *cc = (chipcregs_t *) chipcregs;
uint slowmaxfreq, pll_delay, slowclk; uint slowmaxfreq, pll_delay, slowclk;
...@@ -1174,7 +1174,7 @@ static void BCMINITFN(si_clkctl_setdelay) (si_info_t *sii, void *chipcregs) ...@@ -1174,7 +1174,7 @@ static void BCMINITFN(si_clkctl_setdelay) (si_info_t *sii, void *chipcregs)
} }
/* initialize power control delay registers */ /* initialize power control delay registers */
void BCMINITFN(si_clkctl_init) (si_t *sih) void si_clkctl_init(si_t *sih)
{ {
si_info_t *sii; si_info_t *sii;
uint origidx = 0; uint origidx = 0;
...@@ -1210,7 +1210,7 @@ void BCMINITFN(si_clkctl_init) (si_t *sih) ...@@ -1210,7 +1210,7 @@ void BCMINITFN(si_clkctl_init) (si_t *sih)
} }
/* return the value suitable for writing to the dot11 core FAST_PWRUP_DELAY register */ /* return the value suitable for writing to the dot11 core FAST_PWRUP_DELAY register */
u16 BCMINITFN(si_clkctl_fast_pwrup_delay) (si_t *sih) u16 si_clkctl_fast_pwrup_delay(si_t *sih)
{ {
si_info_t *sii; si_info_t *sii;
uint origidx = 0; uint origidx = 0;
...@@ -1612,7 +1612,7 @@ bool si_pci_war16165(si_t *sih) ...@@ -1612,7 +1612,7 @@ bool si_pci_war16165(si_t *sih)
return PCI(sii) && (sih->buscorerev <= 10); return PCI(sii) && (sih->buscorerev <= 10);
} }
void BCMINITFN(si_pci_up) (si_t *sih) void si_pci_up(si_t *sih)
{ {
si_info_t *sii; si_info_t *sii;
...@@ -1641,7 +1641,7 @@ void BCMUNINITFN(si_pci_sleep) (si_t *sih) ...@@ -1641,7 +1641,7 @@ void BCMUNINITFN(si_pci_sleep) (si_t *sih)
} }
/* Unconfigure and/or apply various WARs when going down */ /* Unconfigure and/or apply various WARs when going down */
void BCMINITFN(si_pci_down) (si_t *sih) void si_pci_down(si_t *sih)
{ {
si_info_t *sii; si_info_t *sii;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册