Skip to content
Snippets Groups Projects
Commit 030bda0d authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

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

parent 99101d3d
No related merge requests found
...@@ -380,7 +380,7 @@ static ssize_t rt2x00debug_read_crypto_stats(struct file *file, ...@@ -380,7 +380,7 @@ static ssize_t rt2x00debug_read_crypto_stats(struct file *file,
loff_t *offset) loff_t *offset)
{ {
struct rt2x00debug_intf *intf = file->private_data; 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 *data;
char *temp; char *temp;
size_t size; size_t size;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment