Message ID | 20220311140542.5407-1-wsa+renesas@sang-engineering.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | mmc: tmio: remove outdated members from host struct | expand |
On Sat, Mar 12, 2022 at 12:23 AM Wolfram Sang <wsa+renesas@sang-engineering.com> wrote: > The wrappers are gone for two years now but they have still pointers > reserved in the tmio_mmc_host struct. Remove them. > > Reported-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> > Fixes: f22084b662e5 ("mmc: tmio: remove superfluous callback wrappers") > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds
On Fri, 11 Mar 2022 at 15:05, Wolfram Sang <wsa+renesas@sang-engineering.com> wrote: > > The wrappers are gone for two years now but they have still pointers > reserved in the tmio_mmc_host struct. Remove them. > > Reported-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> > Fixes: f22084b662e5 ("mmc: tmio: remove superfluous callback wrappers") > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Applied for next, thanks! Kind regards Uffe > --- > drivers/mmc/host/tmio_mmc.h | 4 ---- > 1 file changed, 4 deletions(-) > > diff --git a/drivers/mmc/host/tmio_mmc.h b/drivers/mmc/host/tmio_mmc.h > index f936aad945ce..e754bb3f5c32 100644 > --- a/drivers/mmc/host/tmio_mmc.h > +++ b/drivers/mmc/host/tmio_mmc.h > @@ -186,10 +186,6 @@ struct tmio_mmc_host { > void (*fixup_request)(struct tmio_mmc_host *host, struct mmc_request *mrq); > unsigned int (*get_timeout_cycles)(struct tmio_mmc_host *host); > > - void (*prepare_hs400_tuning)(struct tmio_mmc_host *host); > - void (*hs400_downgrade)(struct tmio_mmc_host *host); > - void (*hs400_complete)(struct tmio_mmc_host *host); > - > const struct tmio_mmc_dma_ops *dma_ops; > }; > > -- > 2.30.2 >
diff --git a/drivers/mmc/host/tmio_mmc.h b/drivers/mmc/host/tmio_mmc.h index f936aad945ce..e754bb3f5c32 100644 --- a/drivers/mmc/host/tmio_mmc.h +++ b/drivers/mmc/host/tmio_mmc.h @@ -186,10 +186,6 @@ struct tmio_mmc_host { void (*fixup_request)(struct tmio_mmc_host *host, struct mmc_request *mrq); unsigned int (*get_timeout_cycles)(struct tmio_mmc_host *host); - void (*prepare_hs400_tuning)(struct tmio_mmc_host *host); - void (*hs400_downgrade)(struct tmio_mmc_host *host); - void (*hs400_complete)(struct tmio_mmc_host *host); - const struct tmio_mmc_dma_ops *dma_ops; };
The wrappers are gone for two years now but they have still pointers reserved in the tmio_mmc_host struct. Remove them. Reported-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Fixes: f22084b662e5 ("mmc: tmio: remove superfluous callback wrappers") Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> --- drivers/mmc/host/tmio_mmc.h | 4 ---- 1 file changed, 4 deletions(-)