mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-27 13:43:53 +00:00
staging: vt6656: use clear_bit to remove device flag
Replacing MP_CLEAR_FLAG Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4c3b0d4572
commit
2ab3d46dd3
@ -402,7 +402,6 @@ struct vnt_private {
|
||||
(uVar)++; \
|
||||
}
|
||||
|
||||
#define MP_CLEAR_FLAG(_M, _F) ((_M)->flags &= ~(_F))
|
||||
#define MP_TEST_FLAGS(_M, _F) (((_M)->flags & (_F)) == (_F))
|
||||
|
||||
int vnt_init(struct vnt_private *priv);
|
||||
|
@ -551,7 +551,7 @@ static int vnt_start(struct ieee80211_hw *hw)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
MP_CLEAR_FLAG(priv, DEVICE_FLAGS_DISCONNECTED);
|
||||
clear_bit(DEVICE_FLAGS_DISCONNECTED, &priv->flags);
|
||||
|
||||
if (device_init_registers(priv) == false) {
|
||||
dev_dbg(&priv->usb->dev, " init register fail\n");
|
||||
@ -1025,7 +1025,7 @@ vt6656_probe(struct usb_interface *intf, const struct usb_device_id *id)
|
||||
|
||||
usb_device_reset(priv);
|
||||
|
||||
MP_CLEAR_FLAG(priv, DEVICE_FLAGS_DISCONNECTED);
|
||||
clear_bit(DEVICE_FLAGS_DISCONNECTED, &priv->flags);
|
||||
vnt_reset_command_timer(priv);
|
||||
|
||||
vnt_schedule_command(priv, WLAN_CMD_INIT_MAC80211);
|
||||
|
Loading…
x
Reference in New Issue
Block a user