On Fri, Mar 18, 2016 at 05:29:51PM +0100, Vishal Thanki wrote: > > @@ -1001,6 +1002,9 @@ struct rt2x00_dev { > > /* Extra TX headroom required for alignment purposes. */ > unsigned int extra_tx_headroom; > + > + struct usb_anchor *anchor; > + void (*kill_anchored_urbs)(struct rt2x00_dev *); ... > @@ -1423,6 +1423,7 @@ void rt2x00lib_remove_dev(struct rt2x00_dev *rt2x00dev) > cancel_delayed_work_sync(&rt2x00dev->autowakeup_work); > cancel_work_sync(&rt2x00dev->sleep_work); > if (rt2x00_is_usb(rt2x00dev)) { > + rt2x00dev->kill_anchored_urbs(rt2x00dev); ... > > +static void rt2x00usb_kill_anchored_usb(struct rt2x00_dev *rt2x00dev) > +{ > + usb_kill_anchored_urbs(rt2x00dev->anchor); > +} ... > + rt2x00dev->kill_anchored_urbs = rt2x00usb_kill_anchored_usb; Why do you complicate things, instead of call usb_kill_anchored_urbs() directly? Stanislaw -- 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