summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2011-05-20 16:29:01 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2011-05-20 16:30:48 +1000
commite498af5981e6f850eb6f41b3cf65fb7938b67241 (patch)
treeb776e36a656af89310f4a36c95ed54b385799358
parent84933a0a737f0bcc8d37af216ae200a7ade891fc (diff)
udlfb: include prefetch.h explicitly
Commit e66eed651fd1 ("list: remove prefetching from regular list iterators") removed the include of prefetch.h from list.h, so we need to include it explicitly, now. fixes this build error on powerpc: drivers/video/udlfb.c: In function 'dlfb_compress_hline': drivers/video/udlfb.c:421: error: implicit declaration of function 'prefetch_range' Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
-rw-r--r--drivers/video/udlfb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/udlfb.c b/drivers/video/udlfb.c
index 68041d9dc260..4c299cc5ad65 100644
--- a/drivers/video/udlfb.c
+++ b/drivers/video/udlfb.c
@@ -28,6 +28,7 @@
#include <linux/vmalloc.h>
#include <linux/slab.h>
#include <linux/delay.h>
+#include <linux/prefetch.h>
#include <video/udlfb.h>
#include "edid.h"