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

Staging: bcm: Fix all white space issues in HostMIBSInterface.h



This patch fixes all white space issues in
HostMIBSInterface.h as reported by checkpatch.pl.

Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dc23445a
Loading
Loading
Loading
Loading
+141 −156
Original line number Diff line number Diff line


#ifndef _HOST_MIBSINTERFACE_H
#define _HOST_MIBSINTERFACE_H

@@ -37,14 +35,11 @@ typedef union _U_MIBS_IP_ADDRESS
		ULONG ulIpv6Addr[MIBS_MAX_IP_RANGE_LENGTH * 4];
		//Source Ip Mask Address Range
		ULONG ulIpv6Mask[MIBS_MAX_IP_RANGE_LENGTH * 4];

	};
	struct
	{
		UCHAR		ucIpv4Address[MIBS_MAX_IP_RANGE_LENGTH *
									MIBS_IP_LENGTH_OF_ADDRESS];
		UCHAR		ucIpv4Mask[MIBS_MAX_IP_RANGE_LENGTH *
									MIBS_IP_LENGTH_OF_ADDRESS];
		UCHAR ucIpv4Address[MIBS_MAX_IP_RANGE_LENGTH * MIBS_IP_LENGTH_OF_ADDRESS];
		UCHAR ucIpv4Mask[MIBS_MAX_IP_RANGE_LENGTH * MIBS_IP_LENGTH_OF_ADDRESS];
	};
	struct
	{
@@ -53,7 +48,6 @@ typedef union _U_MIBS_IP_ADDRESS
	};
} U_MIBS_IP_ADDRESS;


typedef struct _S_MIBS_HOST_INFO
{
	ULONG64	GoodTransmits;
@@ -65,7 +59,6 @@ typedef struct _S_MIBS_HOST_INFO
	// to keep track the no of byte received
	ULONG	PrevNumRcevBytes;
	ULONG	CurrNumRcevBytes;

	/* QOS Related */
	ULONG	BEBucketSize;
	ULONG	rtPSBucketSize;
@@ -89,7 +82,6 @@ typedef struct _S_MIBS_CLASSIFIER_RULE
	U_MIBS_IP_ADDRESS stSrcIpAddress;
	/*IP Source Address Length*/
	UCHAR	ucIPSourceAddressLength;

	U_MIBS_IP_ADDRESS stDestIpAddress;
	/* IP Destination Address Length */
	UCHAR	ucIPDestinationAddressLength;
@@ -114,7 +106,6 @@ typedef struct _S_MIBS_CLASSIFIER_RULE
	UINT32	u32PHSRuleID;
} S_MIBS_CLASSIFIER_RULE;


typedef struct _S_MIBS_PHS_RULE
{
	ULONG	ulSFID;
@@ -132,7 +123,6 @@ typedef struct _S_MIBS_PHS_RULE
	B_UINT8	u8PHSV;
	// Reserved bytes are 5, so that it is similar to S_PHS_RULE structure.
	B_UINT8	reserved[5];

	LONG	PHSModifiedBytes;
	ULONG	PHSModifiedNumPackets;
	ULONG	PHSErrorNumPackets;
@@ -161,10 +151,8 @@ typedef struct _S_MIBS_EXTSERVICEFLOW_PARAMETERS
	UINT32	wmanIfCmnCpsReqTxPolicy;
	UINT32	wmanIfCmnSfCsSpecification;
	UINT32	wmanIfCmnCpsTargetSaid;

} S_MIBS_EXTSERVICEFLOW_PARAMETERS;


typedef struct _S_MIBS_SERVICEFLOW_TABLE
{
	//classification extension Rule
@@ -173,7 +161,6 @@ typedef struct _S_MIBS_SERVICEFLOW_TABLE
	UINT	uiThreshold;
	// This field determines the priority of the SF Queues
	B_UINT8	u8TrafficPriority;

	BOOLEAN	bValid;
	BOOLEAN	bActive;
	BOOLEAN	bActivateRequestSent;
@@ -214,7 +201,6 @@ typedef struct _S_MIBS_DROPPED_APP_CNTRL_MESSAGES
	ULONG idle_mode_status;
	ULONG auth_ss_host_msg;
	ULONG low_priority_message;

} S_MIBS_DROPPED_APP_CNTRL_MESSAGES;

typedef struct _S_MIBS_HOST_STATS_MIBS
@@ -225,6 +211,5 @@ typedef struct _S_MIBS_HOST_STATS_MIBS
	S_MIBS_PHS_RULE		astPhsRulesTable[MIBS_MAX_PHSRULES];
	S_MIBS_DROPPED_APP_CNTRL_MESSAGES stDroppedAppCntrlMsgs;
} S_MIBS_HOST_STATS_MIBS;
#endif


#endif