Skip to content

Commit

Permalink
Staging: bcm: Change PVOID to void * in InterfaceAdapter.h
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Nov 2, 2012
1 parent decb16b commit 60896e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/bcm/InterfaceAdapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 60896e6

Please sign in to comment.