diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-09-28 10:54:35 (GMT) |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-10-17 08:57:08 (GMT) |
commit | 33366d0e8be06b980784c732ebace26de08e6679 (patch) | |
tree | b0e2175ec86fca20eb4b888b926c9c87a3c09fda /drivers/video/omap2/dss/dss.c | |
parent | 35f70935c64ae229ebd1fc65398ec68d4d803712 (diff) | |
download | linux-fsl-qoriq-33366d0e8be06b980784c732ebace26de08e6679.tar.xz |
OMAPDSS: add missing sizes.h includes
When compiling on x86, we get compilation errors for dss.c and dispc.c:
drivers/video/omap2/dss/dispc.c:126:11: error: ‘SZ_4K’ undeclared here
(not in a function)
include <linux/sizes.h> to fix compilation.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/dss.c')
-rw-r--r-- | drivers/video/omap2/dss/dss.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/dss.c b/drivers/video/omap2/dss/dss.c index 363852a..eade311 100644 --- a/drivers/video/omap2/dss/dss.c +++ b/drivers/video/omap2/dss/dss.c @@ -32,6 +32,7 @@ #include <linux/platform_device.h> #include <linux/pm_runtime.h> #include <linux/gfp.h> +#include <linux/sizes.h> #include <video/omapdss.h> |