mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
staging: most: dim2: correct misleading struct type name
Correct the misleading struct type name dim_ch_state_t to dim_ch_state since this not a typedef but a normal structure declaration. Suggested-by: Julia Lawall <julia.lawall@inria.fr> Signed-off-by: Deepak R Varma <drv@mailo.com> Link: https://lore.kernel.org/r/Y1GDQO+06fD24Pf/@debian-BULLSEYE-live-builder-AMD64 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1f3e0b4191
commit
ea679d8e03
@ -161,7 +161,7 @@ static int try_start_dim_transfer(struct hdm_channel *hdm_ch)
|
||||
struct list_head *head = &hdm_ch->pending_list;
|
||||
struct mbo *mbo;
|
||||
unsigned long flags;
|
||||
struct dim_ch_state_t st;
|
||||
struct dim_ch_state st;
|
||||
|
||||
BUG_ON(!hdm_ch);
|
||||
BUG_ON(!hdm_ch->is_initialized);
|
||||
@ -259,7 +259,7 @@ static void retrieve_netinfo(struct dim2_hdm *dev, struct mbo *mbo)
|
||||
static void service_done_flag(struct dim2_hdm *dev, int ch_idx)
|
||||
{
|
||||
struct hdm_channel *hdm_ch = dev->hch + ch_idx;
|
||||
struct dim_ch_state_t st;
|
||||
struct dim_ch_state st;
|
||||
struct list_head *head;
|
||||
struct mbo *mbo;
|
||||
int done_buffers;
|
||||
|
@ -943,8 +943,8 @@ u8 dim_service_channel(struct dim_channel *ch)
|
||||
return channel_service(ch);
|
||||
}
|
||||
|
||||
struct dim_ch_state_t *dim_get_channel_state(struct dim_channel *ch,
|
||||
struct dim_ch_state_t *state_ptr)
|
||||
struct dim_ch_state *dim_get_channel_state(struct dim_channel *ch,
|
||||
struct dim_ch_state *state_ptr)
|
||||
{
|
||||
if (!ch || !state_ptr)
|
||||
return NULL;
|
||||
|
@ -27,7 +27,7 @@ enum mlb_clk_speed {
|
||||
CLK_8192FS = 7,
|
||||
};
|
||||
|
||||
struct dim_ch_state_t {
|
||||
struct dim_ch_state {
|
||||
bool ready; /* Shows readiness to enqueue next buffer */
|
||||
u16 done_buffers; /* Number of completed buffers */
|
||||
};
|
||||
@ -87,8 +87,8 @@ void dim_service_ahb_int_irq(struct dim_channel *const *channels);
|
||||
|
||||
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);
|
||||
struct dim_ch_state *dim_get_channel_state(struct dim_channel *ch,
|
||||
struct dim_ch_state *state_ptr);
|
||||
|
||||
u16 dim_dbr_space(struct dim_channel *ch);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user