(uVar)++;                               \
 }
 
-#define MP_SET_FLAG(_M, _F)             ((_M)->flags |= (_F))
 #define MP_CLEAR_FLAG(_M, _F)            ((_M)->flags &= ~(_F))
 #define MP_TEST_FLAGS(_M, _F)            (((_M)->flags & (_F)) == (_F))
 
 
 
        ieee80211_stop_queues(hw);
 
-       MP_SET_FLAG(priv, DEVICE_FLAGS_DISCONNECTED);
+       set_bit(DEVICE_FLAGS_DISCONNECTED, &priv->flags);
 
        cancel_delayed_work_sync(&priv->run_command_work);
 
        usb_set_intfdata(intf, NULL);
        usb_put_dev(interface_to_usbdev(intf));
 
-       priv->flags |= DEVICE_FLAGS_UNPLUG;
+       set_bit(DEVICE_FLAGS_UNPLUG, &priv->flags);
 
        ieee80211_free_hw(priv->hw);
 }