From: Duje Mihanović Date: Fri, 24 Jan 2025 15:47:48 +0000 (+0100) Subject: serial: ns16550: Add Intel XScale support X-Git-Tag: v2025.04-rc2~52^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d84e1519c5b;p=pandora-u-boot.git serial: ns16550: Add Intel XScale support Add compatible string for the Intel XScale variant of the 16550. Needed to match upstream. Signed-off-by: Duje Mihanović Reviewed-by: Stefan Roese --- diff --git a/drivers/serial/ns16550.c b/drivers/serial/ns16550.c index 039da835f5f..0e267d097c5 100644 --- a/drivers/serial/ns16550.c +++ b/drivers/serial/ns16550.c @@ -605,6 +605,7 @@ static const struct udevice_id ns16550_serial_ids[] = { { .compatible = "ingenic,jz4780-uart", .data = PORT_JZ4780 }, { .compatible = "nvidia,tegra20-uart", .data = PORT_NS16550 }, { .compatible = "snps,dw-apb-uart", .data = PORT_NS16550 }, + { .compatible = "intel,xscale-uart", .data = PORT_NS16550 }, {} }; #endif /* OF_REAL */