mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 18:13:26 -04:00
staging: most: rename DIM_GetLockState to dim_get_lock_state
This patch renames DIM_GetLockState to dim_get_lock_state to avoid camelcase found by checkpatch. CHECK: Avoid CamelCase: <DIM_GetLockState> FILE: drivers/staging/most/hdm-dim2/dim2_hdm.c:131: Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
38c3854490
commit
b724207b41
@@ -679,7 +679,7 @@ void dim_shutdown(void)
|
||||
dim2_cleanup();
|
||||
}
|
||||
|
||||
bool DIM_GetLockState(void)
|
||||
bool dim_get_lock_state(void)
|
||||
{
|
||||
return dim2_is_mlb_locked();
|
||||
}
|
||||
|
||||
@@ -69,7 +69,7 @@ u8 dim_startup(void *dim_base_address, u32 mlb_clock);
|
||||
|
||||
void dim_shutdown(void);
|
||||
|
||||
bool DIM_GetLockState(void);
|
||||
bool dim_get_lock_state(void);
|
||||
|
||||
u16 DIM_NormCtrlAsyncBufferSize(u16 buf_size);
|
||||
|
||||
|
||||
@@ -128,7 +128,7 @@ bool dim2_sysfs_get_state_cb(void)
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&dim_lock, flags);
|
||||
state = DIM_GetLockState();
|
||||
state = dim_get_lock_state();
|
||||
spin_unlock_irqrestore(&dim_lock, flags);
|
||||
|
||||
return state;
|
||||
|
||||
Reference in New Issue
Block a user