diff options
Diffstat (limited to 'drivers/xen/xen-pciback/pciback.h')
-rw-r--r-- | drivers/xen/xen-pciback/pciback.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/xen/xen-pciback/pciback.h b/drivers/xen/xen-pciback/pciback.h index 98e29127abf9..c1e95e88ee9e 100644 --- a/drivers/xen/xen-pciback/pciback.h +++ b/drivers/xen/xen-pciback/pciback.h | |||
@@ -12,7 +12,7 @@ | |||
12 | #include <linux/list.h> | 12 | #include <linux/list.h> |
13 | #include <linux/spinlock.h> | 13 | #include <linux/spinlock.h> |
14 | #include <linux/workqueue.h> | 14 | #include <linux/workqueue.h> |
15 | #include <asm/atomic.h> | 15 | #include <linux/atomic.h> |
16 | #include <xen/interface/io/pciif.h> | 16 | #include <xen/interface/io/pciif.h> |
17 | 17 | ||
18 | struct pci_dev_entry { | 18 | struct pci_dev_entry { |
@@ -20,8 +20,8 @@ struct pci_dev_entry { | |||
20 | struct pci_dev *dev; | 20 | struct pci_dev *dev; |
21 | }; | 21 | }; |
22 | 22 | ||
23 | #define _PDEVF_op_active (0) | 23 | #define _PDEVF_op_active (0) |
24 | #define PDEVF_op_active (1<<(_PDEVF_op_active)) | 24 | #define PDEVF_op_active (1<<(_PDEVF_op_active)) |
25 | #define _PCIB_op_pending (1) | 25 | #define _PCIB_op_pending (1) |
26 | #define PCIB_op_pending (1<<(_PCIB_op_pending)) | 26 | #define PCIB_op_pending (1<<(_PCIB_op_pending)) |
27 | 27 | ||