mirror of https://gitee.com/openkylin/linux.git
Staging: bcm: Replace UCHAR with unsigned char in Macros.h
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>
This commit is contained in:
parent
a23e67f1a2
commit
8c4f88a864
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue