|
@@ -404,18 +404,8 @@ static void rt2x00lib_packetfilter_scheduled(struct work_struct *work)
|
|
|
{
|
|
|
struct rt2x00_dev *rt2x00dev =
|
|
|
container_of(work, struct rt2x00_dev, filter_work);
|
|
|
- unsigned int filter = rt2x00dev->packet_filter;
|
|
|
|
|
|
- /*
|
|
|
- * Since we had stored the filter inside rt2x00dev->packet_filter,
|
|
|
- * we should now clear that field. Otherwise the driver will
|
|
|
- * assume nothing has changed (*total_flags will be compared
|
|
|
- * to rt2x00dev->packet_filter to determine if any action is required).
|
|
|
- */
|
|
|
- rt2x00dev->packet_filter = 0;
|
|
|
-
|
|
|
- rt2x00dev->ops->hw->configure_filter(rt2x00dev->hw,
|
|
|
- filter, &filter, 0, NULL);
|
|
|
+ rt2x00dev->ops->lib->config_filter(rt2x00dev, rt2x00dev->packet_filter);
|
|
|
}
|
|
|
|
|
|
static void rt2x00lib_intf_scheduled_iter(void *data, u8 *mac,
|