Commit 2314894f authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Replace B_UINT32 with u32 in Ioctl.h

This patch replaces "B_UINT32" with "u32" in Ioctl.h
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1bb052b7
...@@ -154,9 +154,9 @@ typedef enum _FLASH2X_SECTION_VAL { ...@@ -154,9 +154,9 @@ typedef enum _FLASH2X_SECTION_VAL {
*/ */
typedef struct _FLASH2X_READWRITE { typedef struct _FLASH2X_READWRITE {
FLASH2X_SECTION_VAL Section; /* which section has to be read/written */ FLASH2X_SECTION_VAL Section; /* which section has to be read/written */
B_UINT32 offset; /* Offset within Section. */ u32 offset; /* Offset within Section. */
B_UINT32 numOfBytes; /* NOB from the offset */ u32 numOfBytes; /* NOB from the offset */
B_UINT32 bVerify; u32 bVerify;
void __user *pDataBuff; /* Buffer for reading/writing */ void __user *pDataBuff; /* Buffer for reading/writing */
} FLASH2X_READWRITE, *PFLASH2X_READWRITE; } FLASH2X_READWRITE, *PFLASH2X_READWRITE;
...@@ -170,8 +170,8 @@ typedef struct _FLASH2X_READWRITE { ...@@ -170,8 +170,8 @@ typedef struct _FLASH2X_READWRITE {
typedef struct _FLASH2X_COPY_SECTION { typedef struct _FLASH2X_COPY_SECTION {
FLASH2X_SECTION_VAL SrcSection; FLASH2X_SECTION_VAL SrcSection;
FLASH2X_SECTION_VAL DstSection; FLASH2X_SECTION_VAL DstSection;
B_UINT32 offset; u32 offset;
B_UINT32 numOfBytes; u32 numOfBytes;
} FLASH2X_COPY_SECTION, *PFLASH2X_COPY_SECTION; } FLASH2X_COPY_SECTION, *PFLASH2X_COPY_SECTION;
typedef enum _SECTION_TYPE { typedef enum _SECTION_TYPE {
......
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