Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338160
b: refs/heads/master
c: 1bb052b
h: refs/heads/master
v: v3
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Nov 27, 2012
1 parent 40e2d2d commit 2b7a9bf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 15b18b465c1cb78f20efcbfabaf51f8940eaf2ab
refs/heads/master: 1bb052b706faf55d32f080cfd43f2f7050fdc23b
18 changes: 9 additions & 9 deletions trunk/drivers/staging/bcm/Ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 2b7a9bf

Please sign in to comment.