Skip to content

Commit

Permalink
Staging: bcm: Replace B_UINT16 with u16 in PHSDefines.h
Browse files Browse the repository at this point in the history
This patch replace "B_UINT16" with "u16" in
PHSDefines.h

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Jan 7, 2013
1 parent 3efa535 commit 72ccb86
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/bcm/PHSDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,27 +60,27 @@ typedef enum _E_CLASSIFIER_ENTRY_CONTEXT {

typedef struct _S_CLASSIFIER_ENTRY {
u8 bUsed;
B_UINT16 uiClassifierRuleId;
u16 uiClassifierRuleId;
u8 u8PHSI;
S_PHS_RULE *pstPhsRule;
u8 bUnclassifiedPHSRule;
} S_CLASSIFIER_ENTRY;

typedef struct _S_CLASSIFIER_TABLE {
B_UINT16 uiTotalClassifiers;
u16 uiTotalClassifiers;
S_CLASSIFIER_ENTRY stActivePhsRulesList[MAX_PHSRULE_PER_SF];
S_CLASSIFIER_ENTRY stOldPhsRulesList[MAX_PHSRULE_PER_SF];
B_UINT16 uiOldestPhsRuleIndex;
u16 uiOldestPhsRuleIndex;
} S_CLASSIFIER_TABLE;

typedef struct _S_SERVICEFLOW_ENTRY {
u8 bUsed;
B_UINT16 uiVcid;
u16 uiVcid;
S_CLASSIFIER_TABLE *pstClassifierTable;
} S_SERVICEFLOW_ENTRY;

typedef struct _S_SERVICEFLOW_TABLE {
B_UINT16 uiTotalServiceFlows;
u16 uiTotalServiceFlows;
S_SERVICEFLOW_ENTRY stSFList[MAX_SERVICEFLOWS];
} S_SERVICEFLOW_TABLE;

Expand Down

0 comments on commit 72ccb86

Please sign in to comment.