On Thu, 2014-04-10 at 09:50 +0300, Luca Coelho wrote: > From: Luciano Coelho <luca@xxxxxxxxx> > > Sometimes the firmware sends a dummy packet event while we are in PLT > mode. This doesn't make sense, it's a firmware bug. Fix this by > ignoring dummy packet events when we're PLT mode. > > Reported-by: Yegor Yefremov <yegorslists@xxxxxxxxxxxxxx> > Reported-by: Arik Nemtsov <arik@xxxxxxxxxx> > Signed-off-by: Luciano Coelho <luca@xxxxxxxxx> > --- > drivers/net/wireless/ti/wlcore/event.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/drivers/net/wireless/ti/wlcore/event.c b/drivers/net/wireless/ti/wlcore/event.c > index 1f9a360..8d5174c 100644 > --- a/drivers/net/wireless/ti/wlcore/event.c > +++ b/drivers/net/wireless/ti/wlcore/event.c > @@ -158,6 +158,11 @@ EXPORT_SYMBOL_GPL(wlcore_event_channel_switch); > > void wlcore_event_dummy_packet(struct wl1271 *wl) > { > + if (wl->plt) { > + wl1271_info(DEBUG_EVENT, "Got DUMMY_PACKET event in PLT mode. FW bug, ignoring."); Gack! I changed wl1271_debug to wl1271_info and forgot to compile. This doesn't compile. v2 coming in a sec. -- Luca. -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html