From: Iago Toral Quiroga Date: Tue, 31 Oct 2023 07:38:59 +0000 (+0100) Subject: drm/v3d: add brcm,2712-v3d as a compatible V3D device X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6fd9487147c4f18ad77eea00bd8c9189eec74a3e;p=linux.git drm/v3d: add brcm,2712-v3d as a compatible V3D device This is required to get the V3D module to load with Raspberry Pi 5. Signed-off-by: Iago Toral Quiroga Reviewed-by: Stefan Wahren Reviewed-by: Maíra Canal Signed-off-by: Maíra Canal Link: https://patchwork.freedesktop.org/patch/msgid/20231031073859.25298-5-itoral@igalia.com --- diff --git a/drivers/gpu/drm/v3d/v3d_drv.c b/drivers/gpu/drm/v3d/v3d_drv.c index ffbbe9d527d32..1ab46bdf8ad71 100644 --- a/drivers/gpu/drm/v3d/v3d_drv.c +++ b/drivers/gpu/drm/v3d/v3d_drv.c @@ -187,6 +187,7 @@ static const struct drm_driver v3d_drm_driver = { static const struct of_device_id v3d_of_match[] = { { .compatible = "brcm,2711-v3d" }, + { .compatible = "brcm,2712-v3d" }, { .compatible = "brcm,7268-v3d" }, { .compatible = "brcm,7278-v3d" }, {},