Commit 58066272 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman
Browse files

Staging: bcm: Change PCHAR to char * in InterfaceAdapter.h



This patch changes PCHAR to char *
in InterfaceAdapter.h.

Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5e1db5ad
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
#define _INTERFACE_ADAPTER_H

typedef struct _BULK_ENDP_IN {
	PCHAR	bulk_in_buffer;
	char	*bulk_in_buffer;
	size_t	bulk_in_size;
	UCHAR	bulk_in_endpointAddr;
	UINT	bulk_in_pipe;
@@ -19,7 +19,7 @@ typedef struct _BULK_ENDP_OUT {
} BULK_ENDP_OUT, *PBULK_ENDP_OUT;

typedef struct _INTR_ENDP_IN {
	PCHAR	int_in_buffer;
	char	*int_in_buffer;
	size_t	int_in_size;
	UCHAR	int_in_endpointAddr;
	UCHAR	int_in_interval;
@@ -27,7 +27,7 @@ typedef struct _INTR_ENDP_IN {
} INTR_ENDP_IN, *PINTR_ENDP_IN;

typedef struct _INTR_ENDP_OUT {
	PCHAR	int_out_buffer;
	char	*int_out_buffer;
	size_t	int_out_size;
	UCHAR	int_out_endpointAddr;
	UCHAR	int_out_interval;