mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-23 09:56:00 +00:00
staging: vt6656: remove macro MP_IS_READY
Just test FLag and remove not. Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b679ad2fdb
commit
f370872f72
@ -411,8 +411,6 @@ struct vnt_private {
|
|||||||
#define MP_CLEAR_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))
|
#define MP_TEST_FLAGS(_M, _F) (((_M)->Flags & (_F)) == (_F))
|
||||||
|
|
||||||
#define MP_IS_READY(_M) (((_M)->Flags & fMP_DISCONNECTED) == 0)
|
|
||||||
|
|
||||||
int vnt_init(struct vnt_private *priv);
|
int vnt_init(struct vnt_private *priv);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -289,7 +289,7 @@ int vnt_tx_context(struct vnt_private *priv,
|
|||||||
int status;
|
int status;
|
||||||
struct urb *urb;
|
struct urb *urb;
|
||||||
|
|
||||||
if (!(MP_IS_READY(priv))) {
|
if (priv->Flags & fMP_DISCONNECTED) {
|
||||||
context->in_use = false;
|
context->in_use = false;
|
||||||
return STATUS_RESOURCES;
|
return STATUS_RESOURCES;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user