Skip to content

Commit

Permalink
Staging: rtl8192e: Make arrays const
Browse files Browse the repository at this point in the history
Signed-off-by: Mike McCormack <mikem@ring3k.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Jan 21, 2011
1 parent 5506cf2 commit 7602032
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions drivers/staging/rtl8192e/ieee80211/rtl819x_HTProc.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ u16 MCS_DATA_RATE[2][2][77] =
660, 450, 540, 630, 540, 630, 720, 810, 720, 810, 900, 900, 990} } // Short GI, 40MHz
};

static u8 UNKNOWN_BORADCOM[3] = {0x00, 0x14, 0xbf};
static u8 LINKSYSWRT330_LINKSYSWRT300_BROADCOM[3] = {0x00, 0x1a, 0x70};
static u8 LINKSYSWRT350_LINKSYSWRT150_BROADCOM[3] = {0x00, 0x1d, 0x7e};
static const u8 UNKNOWN_BORADCOM[3] = {0x00, 0x14, 0xbf};
static const u8 LINKSYSWRT330_LINKSYSWRT300_BROADCOM[3] = {0x00, 0x1a, 0x70};
static const u8 LINKSYSWRT350_LINKSYSWRT150_BROADCOM[3] = {0x00, 0x1d, 0x7e};
//static u8 NETGEAR834Bv2_BROADCOM[3] = {0x00, 0x1b, 0x2f};
static u8 BELKINF5D8233V1_RALINK[3] = {0x00, 0x17, 0x3f}; //cosa 03202008
static u8 BELKINF5D82334V3_RALINK[3] = {0x00, 0x1c, 0xdf};
static u8 PCI_RALINK[3] = {0x00, 0x90, 0xcc};
static u8 EDIMAX_RALINK[3] = {0x00, 0x0e, 0x2e};
static u8 AIRLINK_RALINK[3] = {0x00, 0x18, 0x02};
static u8 DLINK_ATHEROS[3] = {0x00, 0x1c, 0xf0};
static u8 CISCO_BROADCOM[3] = {0x00, 0x17, 0x94};
static u8 LINKSYS_MARVELL_4400N[3] = {0x00, 0x14, 0xa4};
static const u8 BELKINF5D8233V1_RALINK[3] = {0x00, 0x17, 0x3f};
static const u8 BELKINF5D82334V3_RALINK[3] = {0x00, 0x1c, 0xdf};
static const u8 PCI_RALINK[3] = {0x00, 0x90, 0xcc};
static const u8 EDIMAX_RALINK[3] = {0x00, 0x0e, 0x2e};
static const u8 AIRLINK_RALINK[3] = {0x00, 0x18, 0x02};
static const u8 DLINK_ATHEROS[3] = {0x00, 0x1c, 0xf0};
static const u8 CISCO_BROADCOM[3] = {0x00, 0x17, 0x94};
static const u8 LINKSYS_MARVELL_4400N[3] = {0x00, 0x14, 0xa4};

// 2008/04/01 MH For Cisco G mode RX TP We need to change FW duration. Should we put the
// code in other place??
Expand Down

0 comments on commit 7602032

Please sign in to comment.