lguest: fix example launcher compile after moved asm-x86 dir.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>

+2 -2
+1 -1
Documentation/lguest/Makefile
··· 1 1 # This creates the demonstration utility "lguest" which runs a Linux guest. 2 - CFLAGS:=-Wall -Wmissing-declarations -Wmissing-prototypes -O3 -I../../include 2 + CFLAGS:=-Wall -Wmissing-declarations -Wmissing-prototypes -O3 -I../../include -I../../arch/x86/include 3 3 LDLIBS:=-lz 4 4 5 5 all: lguest
+1 -1
Documentation/lguest/lguest.c
··· 44 44 #include "linux/virtio_console.h" 45 45 #include "linux/virtio_rng.h" 46 46 #include "linux/virtio_ring.h" 47 - #include "asm-x86/bootparam.h" 47 + #include "asm/bootparam.h" 48 48 /*L:110 We can ignore the 39 include files we need for this program, but I do 49 49 * want to draw attention to the use of kernel-style types. 50 50 *