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