diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-05-14 05:47:05 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-14 17:57:58 -0400 |
commit | ce5b4b977127ee20c3f9c3fd3637cd3796f649f5 (patch) | |
tree | 6ca5c56ba4e2044d99237d98530de894e55b4cb1 | |
parent | e550ba1af9e7008ca8e22d85943cbdf0748c765c (diff) |
net/codel: Add missing #include <linux/prefetch.h>
m68k allmodconfig:
net/sched/sch_codel.c: In function ‘dequeue’:
net/sched/sch_codel.c:70: error: implicit declaration of function ‘prefetch’
make[1]: *** [net/sched/sch_codel.o] Error 1
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/sched/sch_codel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sched/sch_codel.c b/net/sched/sch_codel.c index b4a1a81e757e..213ef60bced8 100644 --- a/net/sched/sch_codel.c +++ b/net/sched/sch_codel.c | |||
@@ -46,6 +46,7 @@ | |||
46 | #include <linux/kernel.h> | 46 | #include <linux/kernel.h> |
47 | #include <linux/errno.h> | 47 | #include <linux/errno.h> |
48 | #include <linux/skbuff.h> | 48 | #include <linux/skbuff.h> |
49 | #include <linux/prefetch.h> | ||
49 | #include <net/pkt_sched.h> | 50 | #include <net/pkt_sched.h> |
50 | #include <net/codel.h> | 51 | #include <net/codel.h> |
51 | 52 | ||