mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 13:14:02 +02:00
serial: 8250: fix compile error with hub6_match_port() when compiled as a module
With CONFIG_SERIAL_8250_HUB6=m, we have the following compile error:
../drivers/tty/serial/8250/8250_hub6.c:46:6: error: redefinition of
'hub6_match_port'
Fix hub6_match_port() prototype definition by using IS_REACHABLE() to
support both built-in and module values, and substitute empty prototype
otherwise.
Fixes: 3d406299d8 ("serial: 8250_hub6: add hub6_match_port()")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202607150717.2YxVdWpX-lkp@intel.com/
Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>
Link: https://patch.msgid.link/20260715153707.4181828-1-hugo@hugovil.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
facd005eee
commit
7ab80d1e72
|
|
@ -8,6 +8,7 @@
|
|||
*/
|
||||
|
||||
#include <linux/bits.h>
|
||||
#include <linux/kconfig.h>
|
||||
#include <linux/serial_8250.h>
|
||||
#include <linux/serial_core.h>
|
||||
#include <linux/dmaengine.h>
|
||||
|
|
@ -334,7 +335,7 @@ int fintek_8250_probe(struct uart_8250_port *uart);
|
|||
static inline int fintek_8250_probe(struct uart_8250_port *uart) { return 0; }
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SERIAL_8250_HUB6
|
||||
#if IS_REACHABLE(CONFIG_SERIAL_8250_HUB6)
|
||||
bool hub6_match_port(const struct uart_port *port1, const struct uart_port *port2);
|
||||
#else
|
||||
static inline bool hub6_match_port(const struct uart_port *port1, const struct uart_port *port2)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user