From f215d651377d98f5998118c6824aeb2db75513be Mon Sep 17 00:00:00 2001 From: Víctor Manuel Jáquez Leal Date: Thu, 9 Aug 2012 13:34:54 +0200 Subject: omap: include omap_drm.h independently MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit omap_drm.h uses data type defined in stdint.h, but that header was not included. omap_drm.h includes drm.h as a local file when it is part of the compiler c flags. This two issues are fixed. New code can include omap_drm.h alone. Signed-off-by: Víctor Manuel Jáquez Leal Signed-off-by: Rob Clark --- omap/omap_drm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/omap/omap_drm.h b/omap/omap_drm.h index f677cd86..9c6c0e4e 100644 --- a/omap/omap_drm.h +++ b/omap/omap_drm.h @@ -29,7 +29,8 @@ #ifndef __OMAP_DRM_H__ #define __OMAP_DRM_H__ -#include "drm.h" +#include +#include /* Please note that modifications to all structs defined here are * subject to backwards-compatibility constraints. -- cgit v1.2.3