From: Tom Rix <trix@redhat.com>
To: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
Cc: gregkh@linuxfoundation.org, jirislaby@kernel.org,
shawnguo@kernel.org, s.hauer@pengutronix.de,
kernel@pengutronix.de, festevam@gmail.com, linux-imx@nxp.com,
nathan@kernel.org, ndesaulniers@google.com, llvm@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] serial: imx: remove unused imx_uart_is_imx* functions
Date: Sat, 18 Mar 2023 07:51:28 -0700 [thread overview]
Message-ID: <b5c61356-02e8-76f1-3e2c-9388aa18462c@redhat.com> (raw)
In-Reply-To: <20230318143041.n6rymackf6p776rq@pengutronix.de>
On 3/18/23 7:30 AM, Uwe Kleine-König wrote:
> On Fri, Mar 17, 2023 at 04:57:10PM -0400, Tom Rix wrote:
>> clang with W=1 reports
>> drivers/tty/serial/imx.c:292:19: error:
>> unused function 'imx_uart_is_imx21' [-Werror,-Wunused-function]
>> static inline int imx_uart_is_imx21(struct imx_port *sport)
>> ^
>> drivers/tty/serial/imx.c:297:19: error:
>> unused function 'imx_uart_is_imx53' [-Werror,-Wunused-function]
>> static inline int imx_uart_is_imx53(struct imx_port *sport)
>> ^
>> drivers/tty/serial/imx.c:302:19: error:
>> unused function 'imx_uart_is_imx6q' [-Werror,-Wunused-function]
>> static inline int imx_uart_is_imx6q(struct imx_port *sport)
>> ^
>> These static functions are not used, so remove them.
>>
>> Signed-off-by: Tom Rix <trix@redhat.com>
> Funny, is_imx6q_uart() was introduced in
> a496e6284c482555db8078190bb689594d129fa9 and never used. Since that
> commit is_imx21_uart() also unused. And the imx53 variant was also never
> used.
>
> Looking at that a bit more, the following cleanup is also possible (only
> compile tested):
>
> diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
> index 8308a23c55a7..a38ee0ed2210 100644
> --- a/drivers/tty/serial/imx.c
> +++ b/drivers/tty/serial/imx.c
> @@ -178,8 +178,6 @@
> enum imx_uart_type {
> IMX1_UART,
> IMX21_UART,
> - IMX53_UART,
> - IMX6Q_UART,
> };
>
> /* device type dependent stuff */
> @@ -241,30 +239,21 @@ struct imx_port_ucrs {
> unsigned int ucr3;
> };
>
> -static struct imx_uart_data imx_uart_devdata[] = {
> - [IMX1_UART] = {
> - .uts_reg = IMX1_UTS,
> - .devtype = IMX1_UART,
> - },
> - [IMX21_UART] = {
> - .uts_reg = IMX21_UTS,
> - .devtype = IMX21_UART,
> - },
> - [IMX53_UART] = {
> - .uts_reg = IMX21_UTS,
> - .devtype = IMX53_UART,
> - },
> - [IMX6Q_UART] = {
> - .uts_reg = IMX21_UTS,
> - .devtype = IMX6Q_UART,
> - },
> +static const struct imx_uart_data imx_uart_imx1_devdata = {
> + .uts_reg = IMX1_UTS,
> + .devtype = IMX1_UART,
> +};
> +
> +static const struct imx_uart_data imx_uart_imx21_devdata = {
> + .uts_reg = IMX21_UTS,
> + .devtype = IMX21_UART,
> };
>
> static const struct of_device_id imx_uart_dt_ids[] = {
> - { .compatible = "fsl,imx6q-uart", .data = &imx_uart_devdata[IMX6Q_UART], },
> - { .compatible = "fsl,imx53-uart", .data = &imx_uart_devdata[IMX53_UART], },
> - { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
> - { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
> + { .compatible = "fsl,imx6q-uart", .data = &imx_uart_imx21_devdata, },
> + { .compatible = "fsl,imx53-uart", .data = &imx_uart_imx21_devdata, },
> + { .compatible = "fsl,imx1-uart", .data = &imx_uart_imx1_devdata, },
> + { .compatible = "fsl,imx21-uart", .data = &imx_uart_imx21_devdata, },
> { /* sentinel */ }
> };
> MODULE_DEVICE_TABLE(of, imx_uart_dt_ids);
>
> If you feel like squashing that into your commit or put it into a
> separate commit with a nice commit log (after convincing yourself that
> the change is fine), feel free to do so.
>
> If you don't:
My interest is not in imx specifically, but rather cleaning up all the
unused functions.
I _think_ I can get the list of around 70 down to around 10 but it will
take a while.
Tom
>
> Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
>
> Best regards
> Uwe
>
prev parent reply other threads:[~2023-03-18 14:52 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-17 20:57 Tom Rix
2023-03-18 14:30 ` Uwe Kleine-König
2023-03-18 14:51 ` Tom Rix [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b5c61356-02e8-76f1-3e2c-9388aa18462c@redhat.com \
--to=trix@redhat.com \
--cc=festevam@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=jirislaby@kernel.org \
--cc=kernel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=nathan@kernel.org \
--cc=ndesaulniers@google.com \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=u.kleine-koenig@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®