summaryrefslogtreecommitdiff
path: root/drivers/staging/bcm/led_control.h
diff options
context:
space:
mode:
authorKevin McKinney <klmckinney1@gmail.com>2012-12-14 19:26:47 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-07 10:51:49 -0800
commit3549a173dc3b2c94ab55b606aa6e6ccdc7357c3a (patch)
tree9e6ef56661e64141422e85584b42c8202caac0a8 /drivers/staging/bcm/led_control.h
parent20dcfc53580b67521a8f6a3375998975955e866e (diff)
Staging: bcm: Replace UCHAR with unsigned char in led_control.h
This patch replace "UCHAR" with "unsigned char" in led_control.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/led_control.h')
-rw-r--r--drivers/staging/bcm/led_control.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/bcm/led_control.h b/drivers/staging/bcm/led_control.h
index 8ae8e431cec3..b670d0de451f 100644
--- a/drivers/staging/bcm/led_control.h
+++ b/drivers/staging/bcm/led_control.h
@@ -60,11 +60,11 @@ typedef enum LedEvents {
* and corresponding LED state information of driver states
*/
typedef struct LedStateInfo_t {
- UCHAR LED_Type; /* specify GPIO number - use 0xFF if not used */
- UCHAR LED_On_State; /* Bits set or reset for different states */
- UCHAR LED_Blink_State; /* Bits set or reset for blinking LEDs for different states */
- UCHAR GPIO_Num;
- UCHAR BitPolarity; /* To represent whether H/W is normal polarity or reverse polarity */
+ unsigned char LED_Type; /* specify GPIO number - use 0xFF if not used */
+ unsigned char LED_On_State; /* Bits set or reset for different states */
+ unsigned char LED_Blink_State; /* Bits set or reset for blinking LEDs for different states */
+ unsigned char GPIO_Num;
+ unsigned char BitPolarity; /* To represent whether H/W is normal polarity or reverse polarity */
} LEDStateInfo, *pLEDStateInfo;
typedef struct _LED_INFO_STRUCT {