Include the linux/types.h file where used types are declared.
Sparse gives the following warning: /usr/include/drm/exynos_drm.h:92: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Emil Goode emilgoode@gmail.com --- include/drm/exynos_drm.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/drm/exynos_drm.h b/include/drm/exynos_drm.h index e478de4..7eb7ae7 100644 --- a/include/drm/exynos_drm.h +++ b/include/drm/exynos_drm.h @@ -29,6 +29,8 @@ #ifndef _EXYNOS_DRM_H_ #define _EXYNOS_DRM_H_
+#include <linux/types.h> + /** * User-desired buffer creation information structure. *
2012/5/10 Emil Goode emilgoode@gmail.com:
Include the linux/types.h file where used types are declared.
Sparse gives the following warning: /usr/include/drm/exynos_drm.h:92: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Emil Goode emilgoode@gmail.com
include/drm/exynos_drm.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/drm/exynos_drm.h b/include/drm/exynos_drm.h index e478de4..7eb7ae7 100644 --- a/include/drm/exynos_drm.h +++ b/include/drm/exynos_drm.h @@ -29,6 +29,8 @@ #ifndef _EXYNOS_DRM_H_ #define _EXYNOS_DRM_H_
+#include <linux/types.h>
applied.
Thanks, Inki Dae
/** * User-desired buffer creation information structure. * -- 1.7.10
dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel
Hi Emil,
we included "drm.h" with g2d driver patch instead of "<linux/types.h> so your patch will be removed from exynos-drm-fixes. sorry for confusing.
for this, you can refer to below link. http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=blobdiff;f=in...
Thanks, Inki Dae
2012/5/14 InKi Dae daeinki@gmail.com:
2012/5/10 Emil Goode emilgoode@gmail.com:
Include the linux/types.h file where used types are declared.
Sparse gives the following warning: /usr/include/drm/exynos_drm.h:92: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Emil Goode emilgoode@gmail.com
include/drm/exynos_drm.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/drm/exynos_drm.h b/include/drm/exynos_drm.h index e478de4..7eb7ae7 100644 --- a/include/drm/exynos_drm.h +++ b/include/drm/exynos_drm.h @@ -29,6 +29,8 @@ #ifndef _EXYNOS_DRM_H_ #define _EXYNOS_DRM_H_
+#include <linux/types.h>
applied.
Thanks, Inki Dae
/** * User-desired buffer creation information structure. * -- 1.7.10
dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel
dri-devel@lists.freedesktop.org