Staging: bcm: Replace UCHAR with unsigned char in Protocol.h
authorKevin McKinney <klmckinney1@gmail.com>
Sat, 22 Dec 2012 19:27:46 +0000 (14:27 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Jan 2013 18:56:45 +0000 (10:56 -0800)
This patch replaces "UCHAR" with "unsigned char"
in Protocol.h

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/Protocol.h

index 7070ce6..51d1133 100644 (file)
@@ -41,7 +41,7 @@ typedef struct _S_ETHCS_PKT_INFO {
        E_NWPKT_IPFRAME_TYPE eNwpktIPFrameType;
        E_NWPKT_ETHFRAME_TYPE eNwpktEthFrameType;
        unsigned short  usEtherType;
-       UCHAR   ucDSAP;
+       unsigned char   ucDSAP;
 } S_ETHCS_PKT_INFO, *PS_ETHCS_PKT_INFO;
 
 typedef struct _ETH_CS_802_Q_FRAME {
@@ -115,8 +115,8 @@ typedef struct _TCP_HEADER {
        unsigned short usDestPort;
        unsigned long  ulSeqNumber;
        unsigned long  ulAckNumber;
-       UCHAR  HeaderLength;
-       UCHAR  ucFlags;
+       unsigned char  HeaderLength;
+       unsigned char  ucFlags;
        unsigned short usWindowsSize;
        unsigned short usChkSum;
        unsigned short usUrgetPtr;