mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 12:43:55 +08:00
staging: most: rename DIM_EnqueueBuffer to dim_enqueue_buffer
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>
This commit is contained in:
parent
60d5f66ce5
commit
c904ffdaf3
@ -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,
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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;
|
||||
};
|
||||
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user