diff options
author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-12-21 14:19:47 -0500 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-12-21 14:32:50 -0500 |
commit | 01464a60a4d21fb649e088f7ae5136c6fb130889 (patch) | |
tree | e8f771224fc1015782c82d2b5b766a9a353f1cb9 /drivers | |
parent | 2a14b24406392c119a2ccb8b0937d486253ee86e (diff) |
xen/xenbus: Fix compile error - missing header for xen_initial_domain()
drivers/xen/xenbus/xenbus_dev_backend.c:74:2: error: implicit declaration of function 'xen_initial_domain'
Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/xen/xenbus/xenbus_dev_backend.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/xen/xenbus/xenbus_dev_backend.c b/drivers/xen/xenbus/xenbus_dev_backend.c index a2092bd97693..3d3be78c1093 100644 --- a/drivers/xen/xenbus/xenbus_dev_backend.c +++ b/drivers/xen/xenbus/xenbus_dev_backend.c | |||
@@ -6,6 +6,7 @@ | |||
6 | #include <linux/module.h> | 6 | #include <linux/module.h> |
7 | #include <linux/capability.h> | 7 | #include <linux/capability.h> |
8 | 8 | ||
9 | #include <xen/xen.h> | ||
9 | #include <xen/page.h> | 10 | #include <xen/page.h> |
10 | #include <xen/xenbus_dev.h> | 11 | #include <xen/xenbus_dev.h> |
11 | 12 | ||