diff options
author | Kevin McKinney <klmckinney1@gmail.com> | 2013-01-04 23:35:07 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-07 10:57:51 -0800 |
commit | b2a089b7732df4750617c82d390ace61a60ddb0d (patch) | |
tree | b9b51d576da9f535f784030ca188dc4373eddc4b /drivers/staging/bcm | |
parent | 79a469136cbd6bc7a91f8e3b785aa793e39a2a75 (diff) |
Staging: bcm: Replace UINT with unsigned int in Debug.h
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>
Diffstat (limited to 'drivers/staging/bcm')
-rw-r--r-- | drivers/staging/bcm/Debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/bcm/Debug.h b/drivers/staging/bcm/Debug.h index 4b620d9ba08b..663325bc5ad7 100644 --- a/drivers/staging/bcm/Debug.h +++ b/drivers/staging/bcm/Debug.h @@ -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 |