Re: [PATCH] serial: sh-sci: Remove plat_sci_port.flags
"Lad, Prabhakar" <[email protected]>
| Newsgroups | gmane.linux.serial,gmane.linux.kernel.renesas-soc,gmane.linux.ports.sh.devel |
|---|---|
| Message-ID | <CA+V-a8uO2L-Ha49+PxRV49Y5RWzvaVA1PGwigtcwPQS51u=+hA@mail.gmail.com> |
On Wed, May 6, 2026 at 1:52 PM Geert Uytterhoeven <[email protected]> wrote: > > The last setter of p->flags was removed in commit 37744feebc086908 > ("sh: remove sh5 support") in v5.8. > > Link: https://lore.kernel.org/CAMuHMdXs94k3-7YD-yO7p2=+u8waYGAz8mpP5LDbMf3szt4V-w@mail.gmail.com > Signed-off-by: Geert Uytterhoeven <[email protected]> > --- > drivers/tty/serial/sh-sci.c | 2 +- > include/linux/serial_sci.h | 1 - > 2 files changed, 1 insertion(+), 2 deletions(-) > Reviewed-by: Lad Prabhakar <[email protected]> Cheers, Prabhakar > diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c > index 6c819b6b24258d36..a35230d57540384c 100644 > --- a/drivers/tty/serial/sh-sci.c > +++ b/drivers/tty/serial/sh-sci.c > @@ -3369,7 +3369,7 @@ static int sci_init_single(struct platform_device *dev, > } > > port->type = SCI_PUBLIC_PORT_ID(p->type); > - port->flags = UPF_FIXED_PORT | UPF_BOOT_AUTOCONF | p->flags; > + port->flags = UPF_FIXED_PORT | UPF_BOOT_AUTOCONF; > port->fifosize = sci_port->params->fifosize; > > if (p->type == PORT_SCI && !dev->dev.of_node) { > diff --git a/include/linux/serial_sci.h b/include/linux/serial_sci.h > index 0f2f50b8d28e2743..36c795d61f7e8457 100644 > --- a/include/linux/serial_sci.h > +++ b/include/linux/serial_sci.h > @@ -51,7 +51,6 @@ struct plat_sci_port_ops { > */ > struct plat_sci_port { > unsigned int type; /* SCI / SCIF / IRDA / HSCIF */ > - upf_t flags; /* UPF_* flags */ > > unsigned int sampling_rate; > unsigned int scscr; /* SCSCR initialization */ > -- > 2.43.0 > >