[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <2025012604-undamaged-earring-d16c@gregkh>
Date: Sun, 26 Jan 2025 20:30:33 +0100
From: Greg KH <gregkh@...uxfoundation.org>
To: Yu-Chun Lin <eleanor15x@...il.com>
Cc: jirislaby@...nel.org, linux-kernel@...r.kernel.org,
linux-serial@...r.kernel.org, jserv@...s.ncku.edu.tw,
visitorckw@...il.com, kernel test robot <lkp@...el.com>
Subject: Re: [PATCH] serial: pic32: Fix build warning when CONFIG_OF is
disabled
On Mon, Jan 27, 2025 at 12:31:15AM +0800, Yu-Chun Lin wrote:
> As reported by the kernel test robot, the following warning occurs:
>
> >> drivers/tty/serial/pic32_uart.c:904:34: warning: 'pic32_serial_dt_ids' defined but not used [-Wunused-const-variable=]
> 904 | static const struct of_device_id pic32_serial_dt_ids[] = {
> | ^~~~~~~~~~~~~~~~~~~
>
> The 'pic32_serial_dt_ids' array is only used when CONFIG_OF is enabled.
> Wrapping its definition and 'MODULE_DEVICE_TABLE' in '#ifdef CONFIG_OF'
> prevents a compiler warning when OF is disabled.
>
> Reported-by: kernel test robot <lkp@...el.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202501260006.ecUsBidz-lkp@intel.com/
> Signed-off-by: Yu-Chun Lin <eleanor15x@...il.com>
> ---
> drivers/tty/serial/pic32_uart.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/tty/serial/pic32_uart.c b/drivers/tty/serial/pic32_uart.c
> index 14d50bd7f1bd..a228a55102c6 100644
> --- a/drivers/tty/serial/pic32_uart.c
> +++ b/drivers/tty/serial/pic32_uart.c
> @@ -948,11 +948,13 @@ static void pic32_uart_remove(struct platform_device *pdev)
> pic32_sports[sport->idx] = NULL;
> }
>
> +#ifdef CONFIG_OF
> static const struct of_device_id pic32_serial_dt_ids[] = {
> { .compatible = "microchip,pic32mzda-uart" },
> { /* sentinel */ }
> };
> MODULE_DEVICE_TABLE(of, pic32_serial_dt_ids);
> +#endif
That should not be needed, no other bus requires this, please fix up the
use of the OF macros instead.
thanks,
greg k-h
Powered by blists - more mailing lists