]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: unisys: fix CamelCase global Visorchipset_cache_buffers_in_use
authorBenjamin Romer <benjamin.romer@unisys.com>
Mon, 16 Mar 2015 17:58:40 +0000 (13:58 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 23 Mar 2015 21:00:18 +0000 (22:00 +0100)
Rename this variable:

Visorchipset_cache_buffers_in_use => visorchipset_cache_buffers_in_use

Update all references to use the fixed name.

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visorchipset/visorchipset_main.c

index 0b09102fa438d583d546842f83c98ade4b6b80a3..cea62fdf0bdbc69f372963759dfed9f138dfbc56 100644 (file)
@@ -203,7 +203,7 @@ struct putfile_request {
        int completion_status;
 };
 
-static atomic_t Visorchipset_cache_buffers_in_use = ATOMIC_INIT(0);
+static atomic_t visorchipset_cache_buffers_in_use = ATOMIC_INIT(0);
 
 struct parahotplug_request {
        struct list_head list;
@@ -2066,7 +2066,7 @@ visorchipset_cache_alloc(struct kmem_cache *pool, BOOL ok_to_block,
        if (!p)
                return NULL;
 
-       atomic_inc(&Visorchipset_cache_buffers_in_use);
+       atomic_inc(&visorchipset_cache_buffers_in_use);
        return p;
 }
 
@@ -2078,7 +2078,7 @@ visorchipset_cache_free(struct kmem_cache *pool, void *p, char *fn, int ln)
        if (!p)
                return;
 
-       atomic_dec(&Visorchipset_cache_buffers_in_use);
+       atomic_dec(&visorchipset_cache_buffers_in_use);
        kmem_cache_free(pool, p);
 }