diff options
Diffstat (limited to 'drivers/xen/platform-pci.c')
-rw-r--r-- | drivers/xen/platform-pci.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/xen/platform-pci.c b/drivers/xen/platform-pci.c index bdb44f2473e8..c01b5ddce529 100644 --- a/drivers/xen/platform-pci.c +++ b/drivers/xen/platform-pci.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/module.h> | 27 | #include <linux/module.h> |
28 | #include <linux/pci.h> | 28 | #include <linux/pci.h> |
29 | 29 | ||
30 | #include <xen/platform_pci.h> | ||
30 | #include <xen/grant_table.h> | 31 | #include <xen/grant_table.h> |
31 | #include <xen/xenbus.h> | 32 | #include <xen/xenbus.h> |
32 | #include <xen/events.h> | 33 | #include <xen/events.h> |
@@ -195,6 +196,11 @@ static struct pci_driver platform_driver = { | |||
195 | 196 | ||
196 | static int __init platform_pci_module_init(void) | 197 | static int __init platform_pci_module_init(void) |
197 | { | 198 | { |
199 | /* no unplug has been done, IGNORE hasn't been specified: just | ||
200 | * return now */ | ||
201 | if (!xen_platform_pci_unplug) | ||
202 | return -ENODEV; | ||
203 | |||
198 | return pci_register_driver(&platform_driver); | 204 | return pci_register_driver(&platform_driver); |
199 | } | 205 | } |
200 | 206 | ||