Browse Source

brcmfmac: Put printing action frames code under debug flag.

Reviewed-by: Arend Van Spriel <arend@broadcom.com>
Signed-off-by: Hante Meuleman <meuleman@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Hante Meuleman 12 years ago
parent
commit
0a4cf487ff
1 changed files with 11 additions and 0 deletions
  1. 11 0
      drivers/net/wireless/brcm80211/brcmfmac/p2p.c

+ 11 - 0
drivers/net/wireless/brcm80211/brcmfmac/p2p.c

@@ -300,6 +300,9 @@ static bool brcmf_p2p_is_gas_action(void *frame, u32 frame_len)
  *
  * Print information about the p2p action frame
  */
+
+#ifdef DEBUG
+
 static void brcmf_p2p_print_actframe(bool tx, void *frame, u32 frame_len)
 {
 	struct brcmf_p2p_pub_act_frame *pact_frm;
@@ -404,6 +407,14 @@ static void brcmf_p2p_print_actframe(bool tx, void *frame, u32 frame_len)
 	}
 }
 
+#else
+
+static void brcmf_p2p_print_actframe(bool tx, void *frame, u32 frame_len)
+{
+}
+
+#endif
+
 /**
  * brcmf_p2p_set_firmware() - prepare firmware for peer-to-peer operation.
  *