Re: [PATCH] serial: sh-sci: Remove plat_sci_port.flags
John Ogness <[email protected]>
| Newsgroups | gmane.linux.serial,gmane.linux.kernel.renesas-soc,gmane.linux.ports.sh.devel |
|---|---|
| Message-ID | <[email protected]> |
On 2026-05-06, 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]> Aside from manually inspecting possible users, I also checked using a coccinelle script. Reviewed-by: John Ogness <[email protected]> ===== BEGIN flags.cocci ===== // SPDX-License-Identifier: GPL-2.0-only // Options: --all-includes virtual patch @r1@ struct plat_sci_port *U; @@ - U->flags + FLAGS_USER @r2@ struct plat_sci_port U; @@ - U.flags + FLAGS_USER @r3@ identifier U; expression E; @@ static struct plat_sci_port U = { - .flags = E + FLAGS_USER }; ===== END flags.cocci =====