2011-05-17 19:34:47

by Randy Dunlap

[permalink] [raw]
Subject: [PATCH -next] wireless: improve airo when PROC_FS is disabled

From: Randy Dunlap <[email protected]>

Skip all of the procfs-related calls when PROC_FS is not enabled.

Signed-off-by: Randy Dunlap <[email protected]>
---
drivers/net/wireless/airo.c | 7 +++++++
1 file changed, 7 insertions(+)

--- linux-next-20110517.orig/drivers/net/wireless/airo.c
+++ linux-next-20110517/drivers/net/wireless/airo.c
@@ -4496,6 +4496,7 @@ struct proc_data {
void (*on_close) (struct inode *, struct file *);
};

+#ifdef CONFIG_PROC_FS
static int setup_proc_entry( struct net_device *dev,
struct airo_info *apriv ) {
struct proc_dir_entry *entry;
@@ -4593,6 +4594,12 @@ fail_stats_delta:
fail:
return -ENOMEM;
}
+#else
+static int setup_proc_entry( struct net_device *dev,
+ struct airo_info *apriv ) {
+ return 0;
+}
+#endif

static int takedown_proc_entry( struct net_device *dev,
struct airo_info *apriv ) {