mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-07 10:03:24 +00:00
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: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1eee001145
commit
712f42cd99
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user