Skip to content

Commit

Permalink
Staging: bcm: Replace UINT with unsigned int in Debug.h
Browse files Browse the repository at this point in the history
This patch replaces "UINT" with "unsigned int"
in Debug.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 79a4691 commit b2a089b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/bcm/Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,14 @@ typedef struct {

/* ---Kernel-space mapping of Debug State */
typedef struct _S_BCM_DEBUG_STATE {
UINT type;
unsigned int type;
/* A bitmap of 32 bits for Subtype per Type.
* Valid indexes in 'subtype' array are *only* 1,2,4 and 8,
* corresponding to valid Type values. Hence we use the 'Type' field
* as the index value, ignoring the array entries 0,3,5,6,7 !
*/
UINT subtype[(NUMTYPES*2)+1];
UINT debug_level;
unsigned int subtype[(NUMTYPES*2)+1];
unsigned int debug_level;
} S_BCM_DEBUG_STATE;
/* Instantiated in the Adapter structure
* We'll reuse the debug level parameter to include a bit (the MSB) to indicate whether or not
Expand Down

0 comments on commit b2a089b

Please sign in to comment.