Commit ea679d8e authored by Deepak R Varma's avatar Deepak R Varma Committed by Greg Kroah-Hartman

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: default avatarJulia Lawall <julia.lawall@inria.fr>
Signed-off-by: default avatarDeepak R Varma <drv@mailo.com>
Link: https://lore.kernel.org/r/Y1GDQO+06fD24Pf/@debian-BULLSEYE-live-builder-AMD64Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1f3e0b41
...@@ -161,7 +161,7 @@ static int try_start_dim_transfer(struct hdm_channel *hdm_ch) ...@@ -161,7 +161,7 @@ static int try_start_dim_transfer(struct hdm_channel *hdm_ch)
struct list_head *head = &hdm_ch->pending_list; struct list_head *head = &hdm_ch->pending_list;
struct mbo *mbo; struct mbo *mbo;
unsigned long flags; unsigned long flags;
struct dim_ch_state_t st; struct dim_ch_state st;
BUG_ON(!hdm_ch); BUG_ON(!hdm_ch);
BUG_ON(!hdm_ch->is_initialized); BUG_ON(!hdm_ch->is_initialized);
...@@ -259,7 +259,7 @@ static void retrieve_netinfo(struct dim2_hdm *dev, struct mbo *mbo) ...@@ -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) static void service_done_flag(struct dim2_hdm *dev, int ch_idx)
{ {
struct hdm_channel *hdm_ch = dev->hch + 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 list_head *head;
struct mbo *mbo; struct mbo *mbo;
int done_buffers; int done_buffers;
......
...@@ -943,8 +943,8 @@ u8 dim_service_channel(struct dim_channel *ch) ...@@ -943,8 +943,8 @@ u8 dim_service_channel(struct dim_channel *ch)
return channel_service(ch); return channel_service(ch);
} }
struct dim_ch_state_t *dim_get_channel_state(struct dim_channel *ch, struct dim_ch_state *dim_get_channel_state(struct dim_channel *ch,
struct dim_ch_state_t *state_ptr) struct dim_ch_state *state_ptr)
{ {
if (!ch || !state_ptr) if (!ch || !state_ptr)
return NULL; return NULL;
......
...@@ -27,7 +27,7 @@ enum mlb_clk_speed { ...@@ -27,7 +27,7 @@ enum mlb_clk_speed {
CLK_8192FS = 7, CLK_8192FS = 7,
}; };
struct dim_ch_state_t { struct dim_ch_state {
bool ready; /* Shows readiness to enqueue next buffer */ bool ready; /* Shows readiness to enqueue next buffer */
u16 done_buffers; /* Number of completed buffers */ u16 done_buffers; /* Number of completed buffers */
}; };
...@@ -87,8 +87,8 @@ void dim_service_ahb_int_irq(struct dim_channel *const *channels); ...@@ -87,8 +87,8 @@ void dim_service_ahb_int_irq(struct dim_channel *const *channels);
u8 dim_service_channel(struct dim_channel *ch); 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 *dim_get_channel_state(struct dim_channel *ch,
struct dim_ch_state_t *state_ptr); struct dim_ch_state *state_ptr);
u16 dim_dbr_space(struct dim_channel *ch); u16 dim_dbr_space(struct dim_channel *ch);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment