diff options
author | Jes Sorensen <jes@sgi.com> | 2007-08-11 00:01:11 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-12 02:47:42 +0400 |
commit | b1a47190a6000d0e75ee4ffa75f3f6b16dd60a0b (patch) | |
tree | 605ecebbdd7fb3d8f507aa74df24bf7da5594148 /drivers/lguest | |
parent | cd5bfea278987ebfe60f3ff92a01696b17c4f978 (diff) | |
download | linux-b1a47190a6000d0e75ee4ffa75f3f6b16dd60a0b.tar.xz |
lguest files should explicitly include asm/paravirt.h
Files using bits from paravirt.h should explicitly include it rather than
relying on it being pulled in by something else.
Signed-off-by: Jes Sorensen <jes@sgi.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/lguest')
-rw-r--r-- | drivers/lguest/lguest_bus.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/lguest/lguest_bus.c b/drivers/lguest/lguest_bus.c index 55a7940ca732..9e7752cc8002 100644 --- a/drivers/lguest/lguest_bus.c +++ b/drivers/lguest/lguest_bus.c @@ -5,6 +5,7 @@ #include <linux/bootmem.h> #include <linux/lguest_bus.h> #include <asm/io.h> +#include <asm/paravirt.h> static ssize_t type_show(struct device *_dev, struct device_attribute *attr, char *buf) |