diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-02-06 21:39:45 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-02-06 21:39:45 (GMT) |
commit | a09771bef9a375091f8ae706d992e20970e5d1e7 (patch) | |
tree | 7d9e67b3c2d94e3061ad456089620c45ea638767 | |
parent | 20651af9ac60fd6e31360688ad44861a7d05256a (diff) | |
download | linux-a09771bef9a375091f8ae706d992e20970e5d1e7.tar.xz |
virtio: fix trivial build bug
fix build bug:
drivers/virtio/virtio_balloon.c: In function 'fill_balloon':
drivers/virtio/virtio_balloon.c:98: error: implicit declaration of function 'msleep'
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | drivers/virtio/virtio_balloon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c index 622aece..c8a4332 100644 --- a/drivers/virtio/virtio_balloon.c +++ b/drivers/virtio/virtio_balloon.c @@ -23,6 +23,7 @@ #include <linux/swap.h> #include <linux/kthread.h> #include <linux/freezer.h> +#include <linux/delay.h> struct virtio_balloon { |