Commit 60896e6b authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Change PVOID to void * in InterfaceAdapter.h

This patch changes PVOID to void *
in InterfaceAdapter.h.
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent decb16b3
...@@ -36,13 +36,13 @@ typedef struct _INTR_ENDP_OUT { ...@@ -36,13 +36,13 @@ typedef struct _INTR_ENDP_OUT {
typedef struct _USB_TCB { typedef struct _USB_TCB {
struct urb *urb; struct urb *urb;
PVOID psIntfAdapter; void *psIntfAdapter;
BOOLEAN bUsed; BOOLEAN bUsed;
} USB_TCB, *PUSB_TCB; } USB_TCB, *PUSB_TCB;
typedef struct _USB_RCB { typedef struct _USB_RCB {
struct urb *urb; struct urb *urb;
PVOID psIntfAdapter; void *psIntfAdapter;
BOOLEAN bUsed; BOOLEAN bUsed;
} USB_RCB, *PUSB_RCB; } USB_RCB, *PUSB_RCB;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment