Commit 0b512e49 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Replace UCHAR with unsigned char in Ioctl.h

This patch replace "UCHAR" with "unsigned
char" in Ioctl.h
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d53fbe34
...@@ -9,7 +9,7 @@ typedef struct rdmbuffer { ...@@ -9,7 +9,7 @@ typedef struct rdmbuffer {
typedef struct wrmbuffer { typedef struct wrmbuffer {
ULONG Register; ULONG Register;
ULONG Length; ULONG Length;
UCHAR Data[4]; unsigned char Data[4];
} __packed WRM_BUFFER, *PWRM_BUFFER; } __packed WRM_BUFFER, *PWRM_BUFFER;
typedef struct ioctlbuffer { typedef struct ioctlbuffer {
...@@ -192,20 +192,20 @@ typedef enum _SECTION_TYPE { ...@@ -192,20 +192,20 @@ typedef enum _SECTION_TYPE {
*/ */
typedef struct _FLASH2X_BITMAP { typedef struct _FLASH2X_BITMAP {
UCHAR ISO_IMAGE1; unsigned char ISO_IMAGE1;
UCHAR ISO_IMAGE2; unsigned char ISO_IMAGE2;
UCHAR DSD0; unsigned char DSD0;
UCHAR DSD1; unsigned char DSD1;
UCHAR DSD2; unsigned char DSD2;
UCHAR VSA0; unsigned char VSA0;
UCHAR VSA1; unsigned char VSA1;
UCHAR VSA2; unsigned char VSA2;
UCHAR SCSI; unsigned char SCSI;
UCHAR CONTROL_SECTION; unsigned char CONTROL_SECTION;
/* Reserved for future use */ /* Reserved for future use */
UCHAR Reserved0; unsigned char Reserved0;
UCHAR Reserved1; unsigned char Reserved1;
UCHAR Reserved2; unsigned char Reserved2;
} FLASH2X_BITMAP, *PFLASH2X_BITMAP; } FLASH2X_BITMAP, *PFLASH2X_BITMAP;
typedef struct _ST_TIME_ELAPSED_ { typedef struct _ST_TIME_ELAPSED_ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment