staging: most: dim2: correct misleading struct type name
authorDeepak R Varma <drv@mailo.com>
Thu, 20 Oct 2022 17:20:00 +0000 (22:50 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 22 Oct 2022 07:59:49 +0000 (09:59 +0200)
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>
drivers/staging/most/dim2/dim2.c
drivers/staging/most/dim2/hal.c
drivers/staging/most/dim2/hal.h

index 97dff82..7a5f80e 100644 (file)
@@ -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;
index 65282c2..a5d40b5 100644 (file)
@@ -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;
index 2053144..ef10a87 100644 (file)
@@ -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);