Commit 712f42cd authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: fix CamelCase global Visorchipset_cache_buffers_in_use

Rename this variable:

Visorchipset_cache_buffers_in_use => visorchipset_cache_buffers_in_use

Update all references to use the fixed name.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1eee0011
......@@ -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);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment