Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b9a74297 authored by Roland Vossen's avatar Roland Vossen Committed by Greg Kroah-Hartman
Browse files

staging: brcm80211: removed global function declarations from .c files



Code cleanup. Function declarations were moved to .h files.

Signed-off-by: default avatarRoland Vossen <rvossen@broadcom.com>
Reviewed-by: default avatarArend van Spriel <arend@broadcom.com>
Reviewed-by: default avatarFranky Lin <frankyl@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent fb1d0aa2
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -31,8 +31,6 @@
#include <brcmu_wifi.h>
#include "sdio_host.h"

extern void brcmf_sdbrcm_isr(void *args);

#include "dngl_stats.h"
#include "dhd.h"
#include "dhd_bus.h"
@@ -195,8 +193,6 @@ int brcmf_sdio_remove(struct device *dev)
	return 0;
}

extern int brcmf_sdio_function_init(void);

int brcmf_sdio_register(struct brcmf_sdioh_driver *driver)
{
	drvinfo = *driver;
@@ -205,8 +201,6 @@ int brcmf_sdio_register(struct brcmf_sdioh_driver *driver)
	return brcmf_sdio_function_init();
}

extern void brcmf_sdio_function_cleanup(void);

void brcmf_sdio_unregister(void)
{
	brcmf_sdio_function_cleanup();
+3 −6
Original line number Diff line number Diff line
@@ -32,13 +32,9 @@
#include "dhd.h"
#include "bcmsdh_sdmmc.h"

extern int brcmf_sdio_function_init(void);
extern void brcmf_sdio_function_cleanup(void);

static void brcmf_sdioh_irqhandler(struct sdio_func *func);
static void brcmf_sdioh_irqhandler_f2(struct sdio_func *func);
static int brcmf_sdioh_get_cisaddr(struct sdioh_info *sd, u32 regaddr);
extern int brcmf_sdioh_reset_comm(struct mmc_card *card);

uint sd_f2_blocksize = 512;	/* Default blocksize */

@@ -50,7 +46,8 @@ BRCMF_PM_RESUME_WAIT_INIT(sdioh_request_buffer_wait);

#define DMA_ALIGN_MASK	0x03

int brcmf_sdioh_card_regread(struct sdioh_info *sd, int func, u32 regaddr,
static int
brcmf_sdioh_card_regread(struct sdioh_info *sd, int func, u32 regaddr,
			 int regsize, u32 *data);

static int brcmf_sdioh_enablefuncs(struct sdioh_info *sd)
+5 −5
Original line number Diff line number Diff line
@@ -61,10 +61,6 @@
#define sd_ctrl(x)
#endif

/* Allocate/init/free per-OS private data */
extern int brcmf_sdioh_osinit(struct sdioh_info *sd);
extern void brcmf_sdioh_osfree(struct sdioh_info *sd);

#define BLOCK_SIZE_64 64
#define BLOCK_SIZE_512 512
#define BLOCK_SIZE_4318 64
@@ -108,6 +104,10 @@ struct sdioh_info {
/* Global message bits */
extern uint sd_msglevel;

/* Allocate/init/free per-OS private data */
extern int  brcmf_sdioh_osinit(struct sdioh_info *sd);
extern void brcmf_sdioh_osfree(struct sdioh_info *sd);

/* OS-independent interrupt handler */
extern bool brcmf_sdioh_check_client_intr(struct sdioh_info *sd);

+0 −8
Original line number Diff line number Diff line
@@ -55,12 +55,6 @@
#include "dhd_dbg.h"
#include "wl_cfg80211.h"

extern void brcmf_sdioh_dev_intr_off(struct sdioh_info *sd);
extern void brcmf_sdioh_dev_intr_on(struct sdioh_info *sd);

int brcmf_sdio_function_init(void);
void brcmf_sdio_function_cleanup(void);

/* module param defaults */
static int clockoverride;

@@ -72,8 +66,6 @@ PBCMSDH_SDMMC_INSTANCE gInstance;
/* Maximum number of bcmsdh_sdmmc devices supported by driver */
#define BCMSDH_SDMMC_MAX_DEVICES 1

extern int brcmf_sdio_probe(struct device *dev);
extern int brcmf_sdio_remove(struct device *dev);
struct device sdmmc_dev;

static int brcmf_ops_sdio_probe(struct sdio_func *func,
+0 −1
Original line number Diff line number Diff line
@@ -273,7 +273,6 @@ int brcmf_proto_cdc_set_ioctl(struct brcmf_pub *dhd, int ifidx, uint cmd,
	return ret;
}

extern int dhd_bus_interface(struct dhd_bus *bus, uint arg, void *arg2);
int
brcmf_proto_ioctl(struct brcmf_pub *dhd, int ifidx, struct brcmf_ioctl *ioc,
		  void *buf, int len)
Loading