vme/devices: Fixed camel-case variable names

Fixed camel-case variable names in vme_user.c and vme_user.h.

Signed-off-by: Lisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Lisa Nguyen 2013-05-06 13:04:30 -07:00 committed by Greg Kroah-Hartman
parent 44eeccc054
commit f827c165b0
2 changed files with 8 additions and 8 deletions

View File

@ -109,7 +109,7 @@ struct driver_stats {
unsigned long ioctls; unsigned long ioctls;
unsigned long irqs; unsigned long irqs;
unsigned long berrs; unsigned long berrs;
unsigned long dmaErrors; unsigned long dmaerrors;
unsigned long timeouts; unsigned long timeouts;
unsigned long external; unsigned long external;
}; };
@ -160,7 +160,7 @@ static void reset_counters(void)
statistics.ioctls = 0; statistics.ioctls = 0;
statistics.irqs = 0; statistics.irqs = 0;
statistics.berrs = 0; statistics.berrs = 0;
statistics.dmaErrors = 0; statistics.dmaerrors = 0;
statistics.timeouts = 0; statistics.timeouts = 0;
} }

View File

@ -14,9 +14,9 @@ struct vme_master {
u32 cycle; /* Cycle properties */ u32 cycle; /* Cycle properties */
u32 dwidth; /* Maximum Data Width */ u32 dwidth; /* Maximum Data Width */
#if 0 #if 0
char prefetchEnable; /* Prefetch Read Enable State */ char prefetchenable; /* Prefetch Read Enable State */
int prefetchSize; /* Prefetch Read Size (Cache Lines) */ int prefetchsize; /* Prefetch Read Size (Cache Lines) */
char wrPostEnable; /* Write Post State */ char wrpostenable; /* Write Post State */
#endif #endif
}; };
@ -37,9 +37,9 @@ struct vme_slave {
u32 aspace; /* Address Space */ u32 aspace; /* Address Space */
u32 cycle; /* Cycle properties */ u32 cycle; /* Cycle properties */
#if 0 #if 0
char wrPostEnable; /* Write Post State */ char wrpostenable; /* Write Post State */
char rmwLock; /* Lock PCI during RMW Cycles */ char rmwlock; /* Lock PCI during RMW Cycles */
char data64BitCapable; /* non-VMEbus capable of 64-bit Data */ char data64bitcapable; /* non-VMEbus capable of 64-bit Data */
#endif #endif
}; };