]> Pileus Git - ~andy/linux/commitdiff
Staging: bcm: Replace ULONG with unsigned long in Ioctl.h
authorKevin McKinney <klmckinney1@gmail.com>
Thu, 22 Nov 2012 19:48:35 +0000 (14:48 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Nov 2012 00:05:11 +0000 (16:05 -0800)
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>
drivers/staging/bcm/Ioctl.h

index aa3047809276c2e48bec4aba787d0a54fe575c14..f4f5305c5bb6c8d40b65c29503856d6ab055b4bf 100644 (file)
@@ -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;