diff options
author | Robert P. J. Day <rpjday@mindspring.com> | 2007-02-05 19:41:36 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-02-09 14:57:15 -0500 |
commit | 9d4a6040fc6222ca57c271289a7540292640a5a4 (patch) | |
tree | d901e8d34d79f17948c9d6e1649e3fc452c108b2 /net/core | |
parent | ae80031a171b81d28b92877e7a9ce9b26cbfe051 (diff) |
[PATCH] Replace incorrect macro name "WIRELESS_EXT" with "CONFIG_WIRELESS_EXT"
Rename the (apparently) incorrect macro name WIRELESS_EXT to
CONFIG_WIRELESS_EXT.
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/net-sysfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c index f47f319bb7dc..44e69a21c32a 100644 --- a/net/core/net-sysfs.c +++ b/net/core/net-sysfs.c | |||
@@ -329,7 +329,7 @@ static struct attribute_group netstat_group = { | |||
329 | .attrs = netstat_attrs, | 329 | .attrs = netstat_attrs, |
330 | }; | 330 | }; |
331 | 331 | ||
332 | #ifdef WIRELESS_EXT | 332 | #ifdef CONFIG_WIRELESS_EXT |
333 | /* helper function that does all the locking etc for wireless stats */ | 333 | /* helper function that does all the locking etc for wireless stats */ |
334 | static ssize_t wireless_show(struct class_device *cd, char *buf, | 334 | static ssize_t wireless_show(struct class_device *cd, char *buf, |
335 | ssize_t (*format)(const struct iw_statistics *, | 335 | ssize_t (*format)(const struct iw_statistics *, |
@@ -462,7 +462,7 @@ int netdev_register_sysfs(struct net_device *net) | |||
462 | if (net->get_stats) | 462 | if (net->get_stats) |
463 | *groups++ = &netstat_group; | 463 | *groups++ = &netstat_group; |
464 | 464 | ||
465 | #ifdef WIRELESS_EXT | 465 | #ifdef CONFIG_WIRELESS_EXT |
466 | if (net->wireless_handlers && net->wireless_handlers->get_wireless_stats) | 466 | if (net->wireless_handlers && net->wireless_handlers->get_wireless_stats) |
467 | *groups++ = &wireless_group; | 467 | *groups++ = &wireless_group; |
468 | #endif | 468 | #endif |