[PATCH 05/16] Staging: bcm: Change UCHAR to unsigned char in InterfaceAdapter.h

Kevin McKinney klmckinney1 at gmail.com
Fri Nov 2 03:42:17 UTC 2012


This patch changes UCHAR to unsigned char
in InterfaceAdapter.h.

Signed-off-by: Kevin McKinney <klmckinney1 at gmail.com>
---
 drivers/staging/bcm/InterfaceAdapter.h |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/bcm/InterfaceAdapter.h b/drivers/staging/bcm/InterfaceAdapter.h
index ea1e6c9..598960e 100644
--- a/drivers/staging/bcm/InterfaceAdapter.h
+++ b/drivers/staging/bcm/InterfaceAdapter.h
@@ -4,33 +4,33 @@
 typedef struct _BULK_ENDP_IN {
 	char	*bulk_in_buffer;
 	size_t	bulk_in_size;
-	UCHAR	bulk_in_endpointAddr;
+	unsigned char	bulk_in_endpointAddr;
 	UINT	bulk_in_pipe;
 } BULK_ENDP_IN, *PBULK_ENDP_IN;
 
 
 typedef struct _BULK_ENDP_OUT {
-	UCHAR	bulk_out_buffer;
+	unsigned char	bulk_out_buffer;
 	size_t	bulk_out_size;
-	UCHAR	bulk_out_endpointAddr;
+	unsigned char	bulk_out_endpointAddr;
 	UINT	bulk_out_pipe;
 	/* this is used when int out endpoint is used as bulk out end point */
-	UCHAR	int_out_interval;
+	unsigned char	int_out_interval;
 } BULK_ENDP_OUT, *PBULK_ENDP_OUT;
 
 typedef struct _INTR_ENDP_IN {
 	char	*int_in_buffer;
 	size_t	int_in_size;
-	UCHAR	int_in_endpointAddr;
-	UCHAR	int_in_interval;
+	unsigned char	int_in_endpointAddr;
+	unsigned char	int_in_interval;
 	UINT	int_in_pipe;
 } INTR_ENDP_IN, *PINTR_ENDP_IN;
 
 typedef struct _INTR_ENDP_OUT {
 	char	*int_out_buffer;
 	size_t	int_out_size;
-	UCHAR	int_out_endpointAddr;
-	UCHAR	int_out_interval;
+	unsigned char	int_out_endpointAddr;
+	unsigned char	int_out_interval;
 	UINT	int_out_pipe;
 } INTR_ENDP_OUT, *PINTR_ENDP_OUT;
 
-- 
1.7.9.5




More information about the devel mailing list