Staging: bcm: Replace UCHAR with unsigned char in Protocol.h

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>
This commit is contained in:
Kevin McKinney 2012-12-22 14:27:46 -05:00 committed by Greg Kroah-Hartman
parent edb9ebb098
commit 57b49adaf1
1 changed files with 3 additions and 3 deletions

View 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;