summaryrefslogtreecommitdiff
path: root/drivers/staging/vme
diff options
context:
space:
mode:
authorAaron Sierra <asierra@xes-inc.com>2013-12-18 10:11:18 -0600
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-12-18 16:20:13 -0800
commit7e4290c6db6aaf02296d714587269a9f46750d92 (patch)
treea70713d0aa5f0346151a97b914612268bbdd0613 /drivers/staging/vme
parent89b1cc2dcb08cdfd7cf04593c135a399c1492c42 (diff)
vme_user: Use __u64 and __u32 in userspace structs
Signed-off-by: Aaron Sierra <asierra@xes-inc.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vme')
-rw-r--r--drivers/staging/vme/devices/vme_user.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/staging/vme/devices/vme_user.h b/drivers/staging/vme/devices/vme_user.h
index c3b496413211..b8cc7bc78a73 100644
--- a/drivers/staging/vme/devices/vme_user.h
+++ b/drivers/staging/vme/devices/vme_user.h
@@ -7,12 +7,12 @@
* VMEbus Master Window Configuration Structure
*/
struct vme_master {
- u32 enable; /* State of Window */
- u64 vme_addr; /* Starting Address on the VMEbus */
- u64 size; /* Window Size */
- u32 aspace; /* Address Space */
- u32 cycle; /* Cycle properties */
- u32 dwidth; /* Maximum Data Width */
+ __u32 enable; /* State of Window */
+ __u64 vme_addr; /* Starting Address on the VMEbus */
+ __u64 size; /* Window Size */
+ __u32 aspace; /* Address Space */
+ __u32 cycle; /* Cycle properties */
+ __u32 dwidth; /* Maximum Data Width */
#if 0
char prefetchenable; /* Prefetch Read Enable State */
int prefetchsize; /* Prefetch Read Size (Cache Lines) */
@@ -31,11 +31,11 @@ struct vme_master {
/* VMEbus Slave Window Configuration Structure */
struct vme_slave {
- u32 enable; /* State of Window */
- u64 vme_addr; /* Starting Address on the VMEbus */
- u64 size; /* Window Size */
- u32 aspace; /* Address Space */
- u32 cycle; /* Cycle properties */
+ __u32 enable; /* State of Window */
+ __u64 vme_addr; /* Starting Address on the VMEbus */
+ __u64 size; /* Window Size */
+ __u32 aspace; /* Address Space */
+ __u32 cycle; /* Cycle properties */
#if 0
char wrpostenable; /* Write Post State */
char rmwlock; /* Lock PCI during RMW Cycles */