Skip to content

Commit

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

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

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 60d5f66 commit c904ffd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion drivers/staging/most/hdm-dim2/dim2_hal.c
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,8 @@ struct dim_ch_state_t *dim_get_channel_state(struct dim_channel *ch,
return state_ptr;
}

bool DIM_EnqueueBuffer(struct dim_channel *ch, u32 buffer_addr, u16 buffer_size)
bool dim_enqueue_buffer(struct dim_channel *ch, u32 buffer_addr,
u16 buffer_size)
{
if (!ch)
return dim_on_error(DIM_ERR_DRIVER_NOT_INITIALIZED,
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 @@ -98,8 +98,8 @@ u8 dim_service_channel(struct dim_channel *ch);
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);
bool dim_enqueue_buffer(struct dim_channel *ch, u32 buffer_addr,
u16 buffer_size);

bool dim_detach_buffers(struct dim_channel *ch, u16 buffers_number);

Expand Down
6 changes: 3 additions & 3 deletions drivers/staging/most/hdm-dim2/dim2_hdm.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ struct hdm_channel {
char name[sizeof "caNNN"];
bool is_initialized;
struct dim_channel ch;
struct list_head pending_list; /* before DIM_EnqueueBuffer() */
struct list_head started_list; /* after DIM_EnqueueBuffer() */
struct list_head pending_list; /* before dim_enqueue_buffer() */
struct list_head started_list; /* after dim_enqueue_buffer() */
enum most_channel_direction direction;
enum most_channel_data_type data_type;
};
Expand Down Expand Up @@ -255,7 +255,7 @@ static int try_start_dim_transfer(struct hdm_channel *hdm_ch)
buf_size = mbo->buffer_length;

BUG_ON(mbo->bus_address == 0);
if (!DIM_EnqueueBuffer(&hdm_ch->ch, mbo->bus_address, buf_size)) {
if (!dim_enqueue_buffer(&hdm_ch->ch, mbo->bus_address, buf_size)) {
list_del(head->next);
spin_unlock_irqrestore(&dim_lock, flags);
mbo->processed_length = 0;
Expand Down

0 comments on commit c904ffd

Please sign in to comment.