diff options
Diffstat (limited to 'drivers/net/wireless/intersil/hostap/hostap_ap.c')
| -rw-r--r-- | drivers/net/wireless/intersil/hostap/hostap_ap.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/net/wireless/intersil/hostap/hostap_ap.c b/drivers/net/wireless/intersil/hostap/hostap_ap.c index d1884b8913e7..0094b1d2b577 100644 --- a/drivers/net/wireless/intersil/hostap/hostap_ap.c +++ b/drivers/net/wireless/intersil/hostap/hostap_ap.c @@ -66,7 +66,7 @@ static void prism2_send_mgmt(struct net_device *dev,  #endif /* PRISM2_NO_KERNEL_IEEE80211_MGMT */ -#ifndef PRISM2_NO_PROCFS_DEBUG +#if !defined(PRISM2_NO_PROCFS_DEBUG) && defined(CONFIG_PROC_FS)  static int ap_debug_proc_show(struct seq_file *m, void *v)  {  	struct ap_data *ap = PDE_DATA(file_inode(m->file)); @@ -81,8 +81,7 @@ static int ap_debug_proc_show(struct seq_file *m, void *v)  	seq_printf(m, "tx_drop_nonassoc=%u\n", ap->tx_drop_nonassoc);  	return 0;  } -#endif /* PRISM2_NO_PROCFS_DEBUG */ - +#endif  static void ap_sta_hash_add(struct ap_data *ap, struct sta_info *sta)  { @@ -990,7 +989,7 @@ static void prism2_send_mgmt(struct net_device *dev,  }  #endif /* PRISM2_NO_KERNEL_IEEE80211_MGMT */ - +#ifdef CONFIG_PROC_FS  static int prism2_sta_proc_show(struct seq_file *m, void *v)  {  	struct sta_info *sta = m->private; @@ -1059,6 +1058,7 @@ static int prism2_sta_proc_show(struct seq_file *m, void *v)  	return 0;  } +#endif  static void handle_add_proc_queue(struct work_struct *work)  { |