diff options
| author | Kaustabh Chakraborty <[email protected]> | 2025-10-17 20:59:22 +0530 |
|---|---|---|
| committer | Minkyu Kang <[email protected]> | 2025-11-12 13:58:36 +0900 |
| commit | 0bdc54e8df381424cb078c2f16767780534c8648 (patch) | |
| tree | b7bb33be4b8c70d464f3f01bea62a2e661b848ba | |
| parent | 9145d93c591b3141e70b215427a00bd2fc227c03 (diff) | |
serial: s5p: add compatible for exynos8895
Add the compatible for Exynos8895 UART as described in upstream
devicetree bindings. This enables support for Exynos8895 and other
similar UART devices, such as Exynos7870. Other than that, the driver
works as-is.
Signed-off-by: Kaustabh Chakraborty <[email protected]>
Reviewed-by: Henrik Grimler <[email protected]>
Signed-off-by: Minkyu Kang <[email protected]>
| -rw-r--r-- | drivers/serial/serial_s5p.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/serial/serial_s5p.c b/drivers/serial/serial_s5p.c index 734780a124a..d46a88610ab 100644 --- a/drivers/serial/serial_s5p.c +++ b/drivers/serial/serial_s5p.c @@ -258,6 +258,7 @@ static const struct dm_serial_ops s5p_serial_ops = { static const struct udevice_id s5p_serial_ids[] = { { .compatible = "samsung,exynos4210-uart", .data = PORT_S5P }, { .compatible = "samsung,exynos850-uart", .data = PORT_S5P }, + { .compatible = "samsung,exynos8895-uart", .data = PORT_S5P }, { .compatible = "apple,s5l-uart", .data = PORT_S5L }, { } }; |
