diff options
author | Kevin McKinney <klmckinney1@gmail.com> | 2012-11-22 14:48:35 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-26 16:05:11 -0800 |
commit | 1bb052b706faf55d32f080cfd43f2f7050fdc23b (patch) | |
tree | 04f244e18f8a3fa62da70fe5c3846fbd83cab05c /drivers/staging | |
parent | 15b18b465c1cb78f20efcbfabaf51f8940eaf2ab (diff) | |
download | linux-1bb052b706faf55d32f080cfd43f2f7050fdc23b.tar.bz2 |
Staging: bcm: Replace ULONG with unsigned long in Ioctl.h
This patch replace "ULONG" with "unsigned
long" in Ioctl.h
Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/bcm/Ioctl.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/staging/bcm/Ioctl.h b/drivers/staging/bcm/Ioctl.h index aa3047809276..f4f5305c5bb6 100644 --- a/drivers/staging/bcm/Ioctl.h +++ b/drivers/staging/bcm/Ioctl.h @@ -2,21 +2,21 @@ #define _IOCTL_H_ typedef struct rdmbuffer { - ULONG Register; - ULONG Length; + unsigned long Register; + unsigned long Length; } __packed RDM_BUFFER, *PRDM_BUFFER; typedef struct wrmbuffer { - ULONG Register; - ULONG Length; + unsigned long Register; + unsigned long Length; unsigned char Data[4]; } __packed WRM_BUFFER, *PWRM_BUFFER; typedef struct ioctlbuffer { void __user *InputBuffer; - ULONG InputLength; + unsigned long InputLength; void __user *OutputBuffer; - ULONG OutputLength; + unsigned long OutputLength; } __packed IOCTL_BUFFER, *PIOCTL_BUFFER; typedef struct stGPIOInfo { @@ -124,9 +124,9 @@ typedef struct _NVM_READWRITE { } NVM_READWRITE, *PNVM_READWRITE; typedef struct bulkwrmbuffer { - ULONG Register; - ULONG SwapEndian; - ULONG Values[1]; + unsigned long Register; + unsigned long SwapEndian; + unsigned long Values[1]; } BULKWRM_BUFFER, *PBULKWRM_BUFFER; |