Skip to content

Commit

Permalink
Staging: bcm: Replace UCHAR with unsigned char in led_control.h
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Jan 7, 2013
1 parent 20dcfc5 commit 3549a17
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/bcm/led_control.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3549a17

Please sign in to comment.