brcm2708: update linux 4.4 patches to latest version
[openwrt/openwrt.git] / target / linux / brcm2708 / patches-4.4 / 0294-drm-vc4-Recognize-a-more-specific-compatible-string-.patch
1 From 16410f120e31739e61b0a89f91539cd551e088cc Mon Sep 17 00:00:00 2001
2 From: Eric Anholt <eric@anholt.net>
3 Date: Fri, 4 Mar 2016 12:32:07 -0800
4 Subject: [PATCH 294/423] drm/vc4: Recognize a more specific compatible string
5 for V3D.
6
7 The Raspberry Pi Foundation's firmware updates are shipping device
8 trees using the old string, so we'll keep recognizing that as this rev
9 of V3D. Still, we should use a more specific name in the upstream DT
10 to clarify which board is being supported, in case we do other revs of
11 V3D in the future.
12
13 Signed-off-by: Eric Anholt <eric@anholt.net>
14 Acked-by: Stephen Warren <swarren@wwwdotorg.org>
15 (cherry picked from commit 90d7116061f86c1f8ea460806a0414addea7b58b)
16 ---
17 drivers/gpu/drm/vc4/vc4_v3d.c | 1 +
18 1 file changed, 1 insertion(+)
19
20 --- a/drivers/gpu/drm/vc4/vc4_v3d.c
21 +++ b/drivers/gpu/drm/vc4/vc4_v3d.c
22 @@ -256,6 +256,7 @@ static int vc4_v3d_dev_remove(struct pla
23 }
24
25 static const struct of_device_id vc4_v3d_dt_match[] = {
26 + { .compatible = "brcm,bcm2835-v3d" },
27 { .compatible = "brcm,vc4-v3d" },
28 {}
29 };