diff options
Diffstat (limited to 'drivers/dax/pmem.c')
-rw-r--r-- | drivers/dax/pmem.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/dax/pmem.c b/drivers/dax/pmem.c index cb0d742fa23f..9f2a0b4fd801 100644 --- a/drivers/dax/pmem.c +++ b/drivers/dax/pmem.c | |||
@@ -16,7 +16,7 @@ | |||
16 | #include <linux/pfn_t.h> | 16 | #include <linux/pfn_t.h> |
17 | #include "../nvdimm/pfn.h" | 17 | #include "../nvdimm/pfn.h" |
18 | #include "../nvdimm/nd.h" | 18 | #include "../nvdimm/nd.h" |
19 | #include "dax.h" | 19 | #include "device-dax.h" |
20 | 20 | ||
21 | struct dax_pmem { | 21 | struct dax_pmem { |
22 | struct device *dev; | 22 | struct device *dev; |
@@ -61,8 +61,8 @@ static int dax_pmem_probe(struct device *dev) | |||
61 | int rc; | 61 | int rc; |
62 | void *addr; | 62 | void *addr; |
63 | struct resource res; | 63 | struct resource res; |
64 | struct dax_dev *dax_dev; | ||
65 | struct nd_pfn_sb *pfn_sb; | 64 | struct nd_pfn_sb *pfn_sb; |
65 | struct dev_dax *dev_dax; | ||
66 | struct dax_pmem *dax_pmem; | 66 | struct dax_pmem *dax_pmem; |
67 | struct nd_region *nd_region; | 67 | struct nd_region *nd_region; |
68 | struct nd_namespace_io *nsio; | 68 | struct nd_namespace_io *nsio; |
@@ -130,12 +130,12 @@ static int dax_pmem_probe(struct device *dev) | |||
130 | return -ENOMEM; | 130 | return -ENOMEM; |
131 | 131 | ||
132 | /* TODO: support for subdividing a dax region... */ | 132 | /* TODO: support for subdividing a dax region... */ |
133 | dax_dev = devm_create_dax_dev(dax_region, &res, 1); | 133 | dev_dax = devm_create_dev_dax(dax_region, &res, 1); |
134 | 134 | ||
135 | /* child dax_dev instances now own the lifetime of the dax_region */ | 135 | /* child dev_dax instances now own the lifetime of the dax_region */ |
136 | dax_region_put(dax_region); | 136 | dax_region_put(dax_region); |
137 | 137 | ||
138 | return PTR_ERR_OR_ZERO(dax_dev); | 138 | return PTR_ERR_OR_ZERO(dev_dax); |
139 | } | 139 | } |
140 | 140 | ||
141 | static struct nd_device_driver dax_pmem_driver = { | 141 | static struct nd_device_driver dax_pmem_driver = { |