diff options
author | Dan Williams <dan.j.williams@intel.com> | 2017-07-14 22:54:50 +0200 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2019-01-07 06:24:46 +0100 |
commit | 753a0850e707e9a8c5861356222f9b9e4eba7945 (patch) | |
tree | 8c7e75e158b5debb5d31cdfce8e86d173e55084a /drivers/dax/dax-private.h | |
parent | device-dax: Kill dax_region base (diff) | |
download | linux-753a0850e707e9a8c5861356222f9b9e4eba7945.tar.xz linux-753a0850e707e9a8c5861356222f9b9e4eba7945.zip |
device-dax: Remove multi-resource infrastructure
The multi-resource implementation anticipated discontiguous sub-division
support. That has not yet materialized, delete the infrastructure and
related code.
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dax/dax-private.h')
-rw-r--r-- | drivers/dax/dax-private.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/dax/dax-private.h b/drivers/dax/dax-private.h index 9b393c218fe4..dbd077653b5c 100644 --- a/drivers/dax/dax-private.h +++ b/drivers/dax/dax-private.h @@ -39,14 +39,10 @@ struct dax_region { * @region - parent region * @dax_dev - core dax functionality * @dev - device core - * @num_resources - number of physical address extents in this device - * @res - array of physical address ranges */ struct dev_dax { struct dax_region *region; struct dax_device *dax_dev; struct device dev; - int num_resources; - struct resource res[0]; }; #endif |