diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-11-08 09:54:50 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-11-18 10:09:17 +0200 |
commit | 1c6bc899723ca8c0d58044c3661f13ac2369e55f (patch) | |
tree | d24d62fd9c6386e6f006a0fbc48259585bfc51c5 /drivers/video/omap | |
parent | ef319c6e095676e0247fd24ef8ff7f085c19744f (diff) | |
download | blackbird-op-linux-1c6bc899723ca8c0d58044c3661f13ac2369e55f.tar.gz blackbird-op-linux-1c6bc899723ca8c0d58044c3661f13ac2369e55f.zip |
OMAPFB: fix compilation warnings due to missing include
Fix warnings similar to this by including module.h:
drivers/video/omap/dispc.c:276:1: warning: data definition has no type
or storage class
drivers/video/omap/dispc.c:276:1: warning: type defaults to 'int' in
declaration of 'EXPORT_SYMBOL'
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap')
-rw-r--r-- | drivers/video/omap/dispc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/omap/dispc.c b/drivers/video/omap/dispc.c index 0ccd7adf47bb..6f61e781f15a 100644 --- a/drivers/video/omap/dispc.c +++ b/drivers/video/omap/dispc.c @@ -19,6 +19,7 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <linux/kernel.h> +#include <linux/module.h> #include <linux/dma-mapping.h> #include <linux/mm.h> #include <linux/vmalloc.h> |