Commit 57b49ada authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

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

This patch replaces "UCHAR" with "unsigned char"
in Protocol.h
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent edb9ebb0
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment