diff options
author | John W. Linville <linville@tuxdriver.com> | 2010-09-21 15:49:14 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-09-21 15:49:14 -0400 |
commit | b618f6f885579a6237e5bf4582fa6167972ddef4 (patch) | |
tree | b11508178570b98ce9cb2d76ecebd046a6f0e77c /drivers/net/wireless/ray_cs.c | |
parent | 462fb2af9788a82a534f8184abfde31574e1cfa0 (diff) | |
parent | 6e5c2b4e8addfaab8ef54dedaf7b607e1585c35b (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6 into for-davem
Conflicts:
arch/arm/mach-omap2/board-omap3pandora.c
drivers/net/wireless/ath/ath5k/base.c
Diffstat (limited to 'drivers/net/wireless/ray_cs.c')
-rw-r--r-- | drivers/net/wireless/ray_cs.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/net/wireless/ray_cs.c b/drivers/net/wireless/ray_cs.c index d91a831a7700..5ca624a64c42 100644 --- a/drivers/net/wireless/ray_cs.c +++ b/drivers/net/wireless/ray_cs.c | |||
@@ -194,7 +194,7 @@ module_param(bc, int, 0); | |||
194 | module_param(phy_addr, charp, 0); | 194 | module_param(phy_addr, charp, 0); |
195 | module_param(ray_mem_speed, int, 0); | 195 | module_param(ray_mem_speed, int, 0); |
196 | 196 | ||
197 | static UCHAR b5_default_startup_parms[] = { | 197 | static const UCHAR b5_default_startup_parms[] = { |
198 | 0, 0, /* Adhoc station */ | 198 | 0, 0, /* Adhoc station */ |
199 | 'L', 'I', 'N', 'U', 'X', 0, 0, 0, /* 32 char ESSID */ | 199 | 'L', 'I', 'N', 'U', 'X', 0, 0, 0, /* 32 char ESSID */ |
200 | 0, 0, 0, 0, 0, 0, 0, 0, | 200 | 0, 0, 0, 0, 0, 0, 0, 0, |
@@ -229,7 +229,7 @@ static UCHAR b5_default_startup_parms[] = { | |||
229 | 2, 0, 0, 0, 0, 0, 0, 0 /* basic rate set */ | 229 | 2, 0, 0, 0, 0, 0, 0, 0 /* basic rate set */ |
230 | }; | 230 | }; |
231 | 231 | ||
232 | static UCHAR b4_default_startup_parms[] = { | 232 | static const UCHAR b4_default_startup_parms[] = { |
233 | 0, 0, /* Adhoc station */ | 233 | 0, 0, /* Adhoc station */ |
234 | 'L', 'I', 'N', 'U', 'X', 0, 0, 0, /* 32 char ESSID */ | 234 | 'L', 'I', 'N', 'U', 'X', 0, 0, 0, /* 32 char ESSID */ |
235 | 0, 0, 0, 0, 0, 0, 0, 0, | 235 | 0, 0, 0, 0, 0, 0, 0, 0, |
@@ -261,9 +261,9 @@ static UCHAR b4_default_startup_parms[] = { | |||
261 | }; | 261 | }; |
262 | 262 | ||
263 | /*===========================================================================*/ | 263 | /*===========================================================================*/ |
264 | static unsigned char eth2_llc[] = { 0xaa, 0xaa, 3, 0, 0, 0 }; | 264 | static const u8 eth2_llc[] = { 0xaa, 0xaa, 3, 0, 0, 0 }; |
265 | 265 | ||
266 | static char hop_pattern_length[] = { 1, | 266 | static const char hop_pattern_length[] = { 1, |
267 | USA_HOP_MOD, EUROPE_HOP_MOD, | 267 | USA_HOP_MOD, EUROPE_HOP_MOD, |
268 | JAPAN_HOP_MOD, KOREA_HOP_MOD, | 268 | JAPAN_HOP_MOD, KOREA_HOP_MOD, |
269 | SPAIN_HOP_MOD, FRANCE_HOP_MOD, | 269 | SPAIN_HOP_MOD, FRANCE_HOP_MOD, |
@@ -271,7 +271,7 @@ static char hop_pattern_length[] = { 1, | |||
271 | JAPAN_TEST_HOP_MOD | 271 | JAPAN_TEST_HOP_MOD |
272 | }; | 272 | }; |
273 | 273 | ||
274 | static char rcsid[] = | 274 | static const char rcsid[] = |
275 | "Raylink/WebGear wireless LAN - Corey <Thomas corey@world.std.com>"; | 275 | "Raylink/WebGear wireless LAN - Corey <Thomas corey@world.std.com>"; |
276 | 276 | ||
277 | static const struct net_device_ops ray_netdev_ops = { | 277 | static const struct net_device_ops ray_netdev_ops = { |
@@ -2575,7 +2575,7 @@ static void clear_interrupt(ray_dev_t *local) | |||
2575 | #ifdef CONFIG_PROC_FS | 2575 | #ifdef CONFIG_PROC_FS |
2576 | #define MAXDATA (PAGE_SIZE - 80) | 2576 | #define MAXDATA (PAGE_SIZE - 80) |
2577 | 2577 | ||
2578 | static char *card_status[] = { | 2578 | static const char *card_status[] = { |
2579 | "Card inserted - uninitialized", /* 0 */ | 2579 | "Card inserted - uninitialized", /* 0 */ |
2580 | "Card not downloaded", /* 1 */ | 2580 | "Card not downloaded", /* 1 */ |
2581 | "Waiting for download parameters", /* 2 */ | 2581 | "Waiting for download parameters", /* 2 */ |
@@ -2592,8 +2592,8 @@ static char *card_status[] = { | |||
2592 | "Association failed" /* 16 */ | 2592 | "Association failed" /* 16 */ |
2593 | }; | 2593 | }; |
2594 | 2594 | ||
2595 | static char *nettype[] = { "Adhoc", "Infra " }; | 2595 | static const char *nettype[] = { "Adhoc", "Infra " }; |
2596 | static char *framing[] = { "Encapsulation", "Translation" } | 2596 | static const char *framing[] = { "Encapsulation", "Translation" } |
2597 | 2597 | ||
2598 | ; | 2598 | ; |
2599 | /*===========================================================================*/ | 2599 | /*===========================================================================*/ |