Skip to content

Commit

Permalink
staging: most: rename DIM_GetChannelState to dim_get_channel_state
Browse files Browse the repository at this point in the history
This patch renames DIM_GetChannelState to dim_get_channel_state to avoid
camelcase found by checkpatch.

CHECK: Avoid CamelCase: <DIM_GetChannelState>
FILE: drivers/staging/most/hdm-dim2/dim2_hal.c:865:

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Chaehyun Lim authored and Greg Kroah-Hartman committed Nov 16, 2015
1 parent e380925 commit 60d5f66
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/most/hdm-dim2/dim2_hal.c
Original file line number Diff line number Diff line change
Expand Up @@ -862,8 +862,8 @@ u8 dim_service_channel(struct dim_channel *ch)
return channel_service(ch);
}

struct dim_ch_state_t *DIM_GetChannelState(struct dim_channel *ch,
struct dim_ch_state_t *state_ptr)
struct dim_ch_state_t *dim_get_channel_state(struct dim_channel *ch,
struct dim_ch_state_t *state_ptr)
{
if (!ch || !state_ptr)
return NULL;
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/most/hdm-dim2/dim2_hal.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ void dim_service_irq(struct dim_channel *const *channels);

u8 dim_service_channel(struct dim_channel *ch);

struct dim_ch_state_t *DIM_GetChannelState(struct dim_channel *ch,
struct dim_ch_state_t *state_ptr);
struct dim_ch_state_t *dim_get_channel_state(struct dim_channel *ch,
struct dim_ch_state_t *state_ptr);

bool DIM_EnqueueBuffer(struct dim_channel *ch, u32 buffer_addr,
u16 buffer_size);
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/most/hdm-dim2/dim2_hdm.c
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ static int try_start_dim_transfer(struct hdm_channel *hdm_ch)
return -EAGAIN;
}

if (!DIM_GetChannelState(&hdm_ch->ch, &st)->ready) {
if (!dim_get_channel_state(&hdm_ch->ch, &st)->ready) {
spin_unlock_irqrestore(&dim_lock, flags);
return -EAGAIN;
}
Expand Down Expand Up @@ -340,7 +340,7 @@ static void service_done_flag(struct dim2_hdm *dev, int ch_idx)

spin_lock_irqsave(&dim_lock, flags);

done_buffers = DIM_GetChannelState(&hdm_ch->ch, &st)->done_buffers;
done_buffers = dim_get_channel_state(&hdm_ch->ch, &st)->done_buffers;
if (!done_buffers) {
spin_unlock_irqrestore(&dim_lock, flags);
return;
Expand Down

0 comments on commit 60d5f66

Please sign in to comment.