Skip to content

Commit

Permalink
Staging: bcm: Replace UCHAR with unsigned char in Macros.h
Browse files Browse the repository at this point in the history
This patch replaces "UCHAR" with "unsigned char" in
Macros.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 a23e67f commit 8c4f88a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/bcm/Macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@
#define GPIO_PIN_STATE_REGISTER 0x0F000038

struct bcm_link_state {
UCHAR ucLinkStatus;
UCHAR bIdleMode;
UCHAR bShutdownMode;
unsigned char ucLinkStatus;
unsigned char bIdleMode;
unsigned char bShutdownMode;
};

enum enLinkStatus {
Expand Down

0 comments on commit 8c4f88a

Please sign in to comment.