29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From 3ad7fca7d7d217379dc5151c8f539cb7bdb3deac Mon Sep 17 00:00:00 2001
|
|
From: Tomeu Vizoso <tomeu.vizoso@collabora.com>
|
|
Date: Thu, 12 Mar 2020 15:50:13 +0000
|
|
Subject: [PATCH 061/100] FROMLIST(v1): panfrost: Add compatible string for
|
|
bifrost
|
|
|
|
Mesa now supports some Bifrost devices, so enable it.
|
|
|
|
Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
|
|
---
|
|
drivers/gpu/drm/panfrost/panfrost_drv.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/drivers/gpu/drm/panfrost/panfrost_drv.c b/drivers/gpu/drm/panfrost/panfrost_drv.c
|
|
index 882fecc33fdb..8ff8e140f91e 100644
|
|
--- a/drivers/gpu/drm/panfrost/panfrost_drv.c
|
|
+++ b/drivers/gpu/drm/panfrost/panfrost_drv.c
|
|
@@ -677,6 +677,7 @@ static const struct of_device_id dt_match[] = {
|
|
{ .compatible = "arm,mali-t830", .data = &default_data, },
|
|
{ .compatible = "arm,mali-t860", .data = &default_data, },
|
|
{ .compatible = "arm,mali-t880", .data = &default_data, },
|
|
+ { .compatible = "arm,mali-bifrost", .data = &default_data, },
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(of, dt_match);
|
|
--
|
|
2.25.1
|
|
|