diff options
author | Jon Mason <jon.mason@intel.com> | 2013-07-29 19:31:18 -0400 |
---|---|---|
committer | Jon Mason <jon.mason@intel.com> | 2014-04-07 13:59:19 -0400 |
commit | 403c63cb6d7ec2caca2f9222ff843ac89d7d700a (patch) | |
tree | 52fc7c3baff78ed964a24f9a98b8b4921b60601e /drivers/ntb | |
parent | 717e8e8bfe5fdb87e849cd46b03d7877b9d77729 (diff) |
NTB: client event cleanup
Provide a better event interface between the client and transport
Signed-off-by: Jon Mason <jon.mason@intel.com>
Diffstat (limited to 'drivers/ntb')
-rw-r--r-- | drivers/ntb/ntb_hw.h | 4 | ||||
-rw-r--r-- | drivers/ntb/ntb_transport.c | 1 |
2 files changed, 1 insertions, 4 deletions
diff --git a/drivers/ntb/ntb_hw.h b/drivers/ntb/ntb_hw.h index bbdb7edca10c..d1960ffb4bbc 100644 --- a/drivers/ntb/ntb_hw.h +++ b/drivers/ntb/ntb_hw.h | |||
@@ -45,6 +45,7 @@ | |||
45 | * Contact Information: | 45 | * Contact Information: |
46 | * Jon Mason <jon.mason@intel.com> | 46 | * Jon Mason <jon.mason@intel.com> |
47 | */ | 47 | */ |
48 | #include <linux/ntb.h> | ||
48 | 49 | ||
49 | #define PCI_DEVICE_ID_INTEL_NTB_B2B_JSF 0x3725 | 50 | #define PCI_DEVICE_ID_INTEL_NTB_B2B_JSF 0x3725 |
50 | #define PCI_DEVICE_ID_INTEL_NTB_PS_JSF 0x3726 | 51 | #define PCI_DEVICE_ID_INTEL_NTB_PS_JSF 0x3726 |
@@ -83,9 +84,6 @@ static inline void writeq(u64 val, void __iomem *addr) | |||
83 | #define NTB_BAR_MASK ((1 << NTB_BAR_MMIO) | (1 << NTB_BAR_23) |\ | 84 | #define NTB_BAR_MASK ((1 << NTB_BAR_MMIO) | (1 << NTB_BAR_23) |\ |
84 | (1 << NTB_BAR_45)) | 85 | (1 << NTB_BAR_45)) |
85 | 86 | ||
86 | #define NTB_LINK_DOWN 0 | ||
87 | #define NTB_LINK_UP 1 | ||
88 | |||
89 | #define NTB_HB_TIMEOUT msecs_to_jiffies(1000) | 87 | #define NTB_HB_TIMEOUT msecs_to_jiffies(1000) |
90 | 88 | ||
91 | #define NTB_MAX_NUM_MW 2 | 89 | #define NTB_MAX_NUM_MW 2 |
diff --git a/drivers/ntb/ntb_transport.c b/drivers/ntb/ntb_transport.c index 3217f394d45b..042fb3dd354f 100644 --- a/drivers/ntb/ntb_transport.c +++ b/drivers/ntb/ntb_transport.c | |||
@@ -56,7 +56,6 @@ | |||
56 | #include <linux/pci.h> | 56 | #include <linux/pci.h> |
57 | #include <linux/slab.h> | 57 | #include <linux/slab.h> |
58 | #include <linux/types.h> | 58 | #include <linux/types.h> |
59 | #include <linux/ntb.h> | ||
60 | #include "ntb_hw.h" | 59 | #include "ntb_hw.h" |
61 | 60 | ||
62 | #define NTB_TRANSPORT_VERSION 3 | 61 | #define NTB_TRANSPORT_VERSION 3 |