The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / x11r7 / xdriver_xf86-video-imx / 0002-Fix-error-unknown-type-name-uint.patch
1 From ccdfce5e75ba707deacdd5808a8f3de8744848d0 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Eric=20B=C3=A9nard?= <eric@eukrea.com>
3 Date: Tue, 5 Feb 2013 10:57:47 +0100
4 Subject: [PATCH] Fix "error: unknown type name 'uint'"
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 In file included from imx_driver.c:33:0:
10 .../sysroots/imx53qsb/usr/src/kernel/include/linux/mxcfb.h:107:2: error: unknown type name 'uint'
11
12 Upstream-Status: Pending
13
14 Signed-off-by: Eric BĂ©nard <eric@eukrea.com>
15 ---
16  src/imx_driver.c |    1 +
17  1 file changed, 1 insertion(+)
18
19 diff --git a/src/imx_driver.c b/src/imx_driver.c
20 index f4b3e38..4cf662d 100644
21 --- a/src/imx_driver.c
22 +++ b/src/imx_driver.c
23 @@ -29,6 +29,7 @@
24  #include <errno.h>
25  #include <fcntl.h>
26  #include <string.h>
27 +#include <sys/types.h>
28  #include <linux/fb.h>
29  #include <linux/mxcfb.h>
30  
31 -- 
32 1.7.10.4
33