Skip to content

Commit

Permalink
staging: brcm80211: fix for checkpatch 'avoid externs in c file' warning
Browse files Browse the repository at this point in the history
Signed-off-by: Roland Vossen <rvossen@broadcom.com>
Reviewed-by: Arend van Spriel <arend@broadcom.com>
Reviewed-by: Franky Lin <frankyl@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Roland Vossen authored and Greg Kroah-Hartman committed Aug 23, 2011
1 parent fee3237 commit 2740a32
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
10 changes: 2 additions & 8 deletions drivers/staging/brcm80211/brcmfmac/bcmsdh.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,8 @@ static struct brcmf_sdioh_driver drvinfo = { NULL, NULL };

module_param(sd_msglevel, uint, 0);

extern uint sd_f2_blocksize;
module_param(sd_f2_blocksize, int, 0);

/* forward declarations */
int brcmf_sdio_probe(struct device *dev);
EXPORT_SYMBOL(brcmf_sdio_probe);

int brcmf_sdio_remove(struct device *dev);
EXPORT_SYMBOL(brcmf_sdio_remove);

struct brcmf_sdio_card*
brcmf_sdcard_attach(void *cfghdl, u32 *regsva, uint irq)
{
Expand Down Expand Up @@ -590,6 +582,7 @@ int brcmf_sdio_probe(struct device *dev)

return -ENODEV;
}
EXPORT_SYMBOL(brcmf_sdio_probe);

int brcmf_sdio_remove(struct device *dev)
{
Expand Down Expand Up @@ -619,6 +612,7 @@ int brcmf_sdio_remove(struct device *dev)
kfree(sdhc);
return 0;
}
EXPORT_SYMBOL(brcmf_sdio_remove);

int brcmf_sdio_register(struct brcmf_sdioh_driver *driver)
{
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/brcm80211/brcmfmac/dhd_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ static int _brcmf_set_mac_address(struct brcmf_info *drvr_priv, int ifidx, u8 *a
}

#ifdef SOFTAP
extern struct net_device *ap_net_dev;
static struct net_device *ap_net_dev;
#endif

/* Virtual interfaces only ((ifp && ifp->info && ifp->idx == true) */
Expand Down Expand Up @@ -469,7 +469,7 @@ static void brcmf_op_if(struct brcmf_if *ifp)
#ifdef SOFTAP
/* semaphore that the soft AP CODE
waits on */
extern struct semaphore ap_eth_sema;
struct semaphore ap_eth_sema;

/* save ptr to wl0.1 netdev for use
in wl_iw.c */
Expand Down
1 change: 1 addition & 0 deletions drivers/staging/brcm80211/brcmfmac/sdio_host.h
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@ extern int brcmf_sdioh_abort(struct sdioh_info *si, uint fnc);
extern void brcmf_sdio_wdtmr_enable(bool enable);

extern uint sd_msglevel; /* Debug message level */
extern uint sd_f2_blocksize;

extern struct brcmf_sdmmc_instance *gInstance;

Expand Down

0 comments on commit 2740a32

Please sign in to comment.