]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
vme/devices: Fixed camel-case variable names
authorLisa Nguyen <lisa@xenapiadmin.com>
Mon, 6 May 2013 20:04:30 +0000 (13:04 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 12 May 2013 15:33:44 +0000 (08:33 -0700)
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>
drivers/staging/vme/devices/vme_user.c
drivers/staging/vme/devices/vme_user.h

index da7f759849792060678671cb3a5f70b17a8c4373..cf2148e8e5c4c83da9a736e49f33fb89c545da98 100644 (file)
@@ -109,7 +109,7 @@ struct driver_stats {
        unsigned long ioctls;
        unsigned long irqs;
        unsigned long berrs;
-       unsigned long dmaErrors;
+       unsigned long dmaerrors;
        unsigned long timeouts;
        unsigned long external;
 };
@@ -160,7 +160,7 @@ static void reset_counters(void)
        statistics.ioctls = 0;
        statistics.irqs = 0;
        statistics.berrs = 0;
-       statistics.dmaErrors = 0;
+       statistics.dmaerrors = 0;
        statistics.timeouts = 0;
 }
 
index 7d24cd6343e4ca164708289317336a0fe3768fdb..280ccc7f26bb1eaff688219403703c31055ed7f6 100644 (file)
@@ -14,9 +14,9 @@ struct vme_master {
        u32 cycle;              /* Cycle properties */
        u32 dwidth;             /* Maximum Data Width */
 #if 0
-       char prefetchEnable;            /* Prefetch Read Enable State */
-       int prefetchSize;               /* Prefetch Read Size (Cache Lines) */
-       char wrPostEnable;              /* Write Post State */
+       char prefetchenable;            /* Prefetch Read Enable State */
+       int prefetchsize;               /* Prefetch Read Size (Cache Lines) */
+       char wrpostenable;              /* Write Post State */
 #endif
 };
 
@@ -37,9 +37,9 @@ struct vme_slave {
        u32 aspace;                     /* Address Space */
        u32 cycle;              /* Cycle properties */
 #if 0
-       char wrPostEnable;              /* Write Post State */
-       char rmwLock;                   /* Lock PCI during RMW Cycles */
-       char data64BitCapable;          /* non-VMEbus capable of 64-bit Data */
+       char wrpostenable;              /* Write Post State */
+       char rmwlock;                   /* Lock PCI during RMW Cycles */
+       char data64bitcapable;          /* non-VMEbus capable of 64-bit Data */
 #endif
 };