From 04eb4f45c1a58068fc3165d91aa38d51fd07d8e4 Mon Sep 17 00:00:00 2001 From: Neil Armstrong Date: Fri, 30 Aug 2019 14:09:25 +0200 Subject: [PATCH] video: meson: add compatible for Amlogic G12A Finally add the Amlogic G12A SoC compatible for the VPU driver. Signed-off-by: Neil Armstrong Reviewed-by: Anatolij Gustschin --- drivers/video/meson/meson_vpu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/meson/meson_vpu.c b/drivers/video/meson/meson_vpu.c index 34d35749eb..c3af9b013c 100644 --- a/drivers/video/meson/meson_vpu.c +++ b/drivers/video/meson/meson_vpu.c @@ -86,6 +86,7 @@ static const struct udevice_id meson_vpu_ids[] = { { .compatible = "amlogic,meson-gxbb-vpu", .data = VPU_COMPATIBLE_GXBB }, { .compatible = "amlogic,meson-gxl-vpu", .data = VPU_COMPATIBLE_GXL }, { .compatible = "amlogic,meson-gxm-vpu", .data = VPU_COMPATIBLE_GXM }, + { .compatible = "amlogic,meson-g12a-vpu", .data = VPU_COMPATIBLE_G12A }, { } }; -- 2.25.1