Skip to content

Commit

Permalink
staging: most: fix argument name of DIM_GetChannelState
Browse files Browse the repository at this point in the history
The second argument name of DIM_GetChannelState declaration changes from
dim_ch_state_ptr to state_ptr. The DIM_GetChannelState declaration and
definition has same argument name as state_ptr.

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 0d08d54 commit e380925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/most/hdm-dim2/dim2_hal.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ 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 *dim_ch_state_ptr);
struct dim_ch_state_t *state_ptr);

bool DIM_EnqueueBuffer(struct dim_channel *ch, u32 buffer_addr,
u16 buffer_size);
Expand Down

0 comments on commit e380925

Please sign in to comment.