Browse Source

drivers/net/wireless: Use static const char * const where possible

Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Joe Perches 15 years ago
parent
commit
030bda0d41
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/wireless/rt2x00/rt2x00debug.c

+ 1 - 1
drivers/net/wireless/rt2x00/rt2x00debug.c

@@ -380,7 +380,7 @@ static ssize_t rt2x00debug_read_crypto_stats(struct file *file,
 					     loff_t *offset)
 {
 	struct rt2x00debug_intf *intf = file->private_data;
-	char *name[] = { "WEP64", "WEP128", "TKIP", "AES" };
+	static const char * const name[] = { "WEP64", "WEP128", "TKIP", "AES" };
 	char *data;
 	char *temp;
 	size_t size;