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

This patch changes PVOID to void *
in InterfaceAdapter.h.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kevin McKinney 2012-11-01 23:42:19 -04:00 committed by Greg Kroah-Hartman
parent decb16b317
commit 60896e6b81
1 changed files with 2 additions and 2 deletions

View File

@ -36,13 +36,13 @@ typedef struct _INTR_ENDP_OUT {
typedef struct _USB_TCB {
struct urb *urb;
PVOID psIntfAdapter;
void *psIntfAdapter;
BOOLEAN bUsed;
} USB_TCB, *PUSB_TCB;
typedef struct _USB_RCB {
struct urb *urb;
PVOID psIntfAdapter;
void *psIntfAdapter;
BOOLEAN bUsed;
} USB_RCB, *PUSB_RCB;