]> www.infradead.org Git - users/jedix/linux-maple.git/commit
serial: sh-sci: Do not probe the serial port if its slot in sci_ports[] is in use
authorClaudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Thu, 16 Jan 2025 18:22:47 +0000 (20:22 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 17 Jan 2025 11:54:37 +0000 (12:54 +0100)
commit9f7dea875cc7f9c1a56a5c688290634a59cd1420
tree89d99e0ea6b692dc83b68dfae939e5b041b3e405
parent239f11209e5f282e16f5241b99256e25dd0614b6
serial: sh-sci: Do not probe the serial port if its slot in sci_ports[] is in use

In the sh-sci driver, sci_ports[0] is used by earlycon. If the earlycon is
still active when sci_probe() is called and the new serial port is supposed
to map to sci_ports[0], return -EBUSY to prevent breaking the earlycon.

This situation should occurs in debug scenarios, and users should be
aware of the potential conflict.

Fixes: 0b0cced19ab1 ("serial: sh-sci: Add CONFIG_SERIAL_EARLYCON support")
Cc: stable@vger.kernel.org
Signed-off-by: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Link: https://lore.kernel.org/r/20250116182249.3828577-4-claudiu.beznea.uj@bp.renesas.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/sh-sci.c