summaryrefslogtreecommitdiff
path: root/drivers/serial
diff options
context:
space:
mode:
authorNeil Armstrong <narmstrong@baylibre.com>2018-03-29 14:56:02 +0200
committerTom Rini <trini@konsulko.com>2018-04-10 11:52:16 -0400
commite1e1e85203688c1929350d153bd8ef23706fafe6 (patch)
tree8a2af2402ed17bda1d176923fb78a6a055e593bb /drivers/serial
parent20367bb560f0bc3243ccac234ca7ae2ba8f94a5f (diff)
serial: meson: Update compatible with new Linux bindings
The Amlogic Meson SoCs serial bindings were not written when serial support was pushed into Linux and U-Boot. A clean bindings document has been merged into Linux tree to correctly handle the multiple clocks feeding the serial peripheral. This update the U-Boot serial_meson driver with the new compatible string for Amlogic Meson GX Socs. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/serial')
-rw-r--r--drivers/serial/serial_meson.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/serial/serial_meson.c b/drivers/serial/serial_meson.c
index 363affb8c5..6412ca6496 100644
--- a/drivers/serial/serial_meson.c
+++ b/drivers/serial/serial_meson.c
@@ -125,6 +125,7 @@ static const struct dm_serial_ops meson_serial_ops = {
static const struct udevice_id meson_serial_ids[] = {
{ .compatible = "amlogic,meson-uart" },
+ { .compatible = "amlogic,meson-gx-uart" },
{ }
};