Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 220133
b: refs/heads/master
c: 5f782de
h: refs/heads/master
i:
  220131: 150bfb7
v: v3
  • Loading branch information
Jason Cooper authored and Greg Kroah-Hartman committed Oct 6, 2010
1 parent 40abab1 commit 7bc5136
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 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: 6998d33795b921c6c62dde5a0820242da40e3020
refs/heads/master: 5f782dee8d58247f2a277f142a59c227fd0b500e
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/brcmfmac/bcmsdh_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct bcmsdh_hc {
spinlock_t irq_lock;
#endif
};
static bcmsdh_hc_t *sdhcinfo = NULL;
static bcmsdh_hc_t *sdhcinfo;

/* driver info, initialized when bcmsdh_register is called */
static bcmsdh_driver_t drvinfo = { NULL, NULL };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ int sdio_function_init(void);
void sdio_function_cleanup(void);

/* module param defaults */
static int clockoverride = 0;
static int clockoverride;

module_param(clockoverride, int, 0644);
MODULE_PARM_DESC(clockoverride, "SDIO card clock override");
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/brcmfmac/dhd_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ static void wl_show_host_event(wl_event_msg_t *event, void *event_data)

case WLC_E_TRACE:
{
static uint32 seqnum_prev = 0;
static uint32 seqnum_prev;
msgtrace_hdr_t hdr;
uint32 nblost;
char *s, *p;
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/staging/brcm80211/brcmfmac/dhd_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ struct semaphore wifi_control_sem;

struct dhd_bus *g_bus;

static struct wifi_platform_data *wifi_control_data = NULL;
static struct resource *wifi_irqres = NULL;
static struct wifi_platform_data *wifi_control_data;
static struct resource *wifi_irqres;

int wifi_get_irq_number(unsigned long *irq_flags_ptr)
{
Expand Down Expand Up @@ -2542,7 +2542,7 @@ int dhd_os_ioctl_resp_wake(dhd_pub_t *pub)
void dhd_os_wd_timer(void *bus, uint wdtick)
{
dhd_pub_t *pub = bus;
static uint save_dhd_watchdog_ms = 0;
static uint save_dhd_watchdog_ms;
dhd_info_t *dhd = (dhd_info_t *) pub->info;

/* don't start the wd until fw is loaded */
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/brcm80211/brcmfmac/linux_osl.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ typedef struct bcm_static_buf {
unsigned char buf_use[MAX_STATIC_BUF_NUM];
} bcm_static_buf_t;

static bcm_static_buf_t *bcm_static_buf = 0;
static bcm_static_buf_t *bcm_static_buf;

#define MAX_STATIC_PKT_NUM 8
typedef struct bcm_static_pkt {
Expand All @@ -51,7 +51,7 @@ typedef struct bcm_static_pkt {
struct semaphore osl_pkt_sem;
unsigned char pkt_use[MAX_STATIC_PKT_NUM * 2];
} bcm_static_pkt_t;
static bcm_static_pkt_t *bcm_static_skb = 0;
static bcm_static_pkt_t *bcm_static_skb;
#endif /* DHD_USE_STATIC_BUF */

typedef struct bcm_mem_link {
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/brcm80211/brcmfmac/wl_cfg80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
#include <linux/firmware.h>
#include <wl_cfg80211.h>

static struct sdio_func *cfg80211_sdio_func = NULL;
static struct wl_dev *wl_cfg80211_dev = NULL;
static struct sdio_func *cfg80211_sdio_func;
static struct wl_dev *wl_cfg80211_dev;

uint32 wl_dbg_level = WL_DBG_ERR | WL_DBG_INFO;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/brcmfmac/wl_iw.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ extern int dhd_wait_pend8021x(struct net_device *dev);
#define IW_EVENT_IDX(cmd) ((cmd) - IWEVFIRST)
#endif

static void *g_scan = NULL;
static void *g_scan;
static volatile uint g_scan_specified_ssid;
static wlc_ssid_t g_specific_ssid;

Expand Down

0 comments on commit 7bc5136

Please sign in to comment.