# HG changeset patch # User Joseph Jezak # Node ID 97dd902a5a17ef754e3193288a99f4906113269e # Parent d80ae859b8cd448f3e45befc121d9449de4dbbfe Logging level fix, thanks mb. diff -r d80ae859b8cd -r 97dd902a5a17 ieee80211softmac_io.c --- a/ieee80211softmac_io.c Wed Nov 30 13:55:27 2005 +++ b/ieee80211softmac_io.c Wed Nov 30 13:56:08 2005 @@ -379,7 +379,7 @@ pkt_size = data - pkt; break; default: - printk(PFX "Unsupported Management Frame type: %i\n", type); + printkl(KERN_DEBUG PFX "Unsupported Management Frame type: %i\n", type); return -EINVAL; break; }; @@ -416,7 +416,7 @@ pkt_size = IEEE80211_2ADDR_LEN; break; default: - printk(PFX "Unsupported Control Frame type: %i\n", type); + printkl(KERN_DEBUG PFX "Unsupported Control Frame type: %i\n", type); return -EINVAL; break; }