staging: brcm80211: fix "ERROR: do not initialise globals to 0 or NULL"

Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Jason Cooper
2010-09-14 09:45:37 -04:00
committed by Greg Kroah-Hartman
parent 9b6562b1c3
commit e4e4d21fa3
2 changed files with 2 additions and 2 deletions

View File

@@ -370,7 +370,7 @@ static const char BCMATTACHDATA(vstr_macaddr)[] = "macaddr=%s";
static const char BCMATTACHDATA(vstr_usbepnum)[] = "usbepnum=0x%x";
static const char BCMATTACHDATA(vstr_end)[] = "END\0";
uint8 patch_pair = 0;
uint8 patch_pair;
/* For dongle HW, accept partial calibration parameters */
#define BCMDONGLECASE(n)

View File

@@ -52,7 +52,7 @@ struct osl_info {
};
/* Global ASSERT type flag */
uint32 g_assert_type = 0;
uint32 g_assert_type;
static int16 linuxbcmerrormap[] = { 0, /* 0 */
-EINVAL, /* BCME_ERROR */