diff options
author | Dan Williams <dan.j.williams@intel.com> | 2022-07-10 09:57:28 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2022-07-10 09:57:28 -0700 |
commit | 9b99ecf5a316f056d7139fa76198c8a2297846d1 (patch) | |
tree | 7050b2df414c457a868e42c0ebedb414ffff7f2e /drivers/cxl/core/core.h | |
parent | 86677a4e71070ffa4ee476ea119cd61d254a7af4 (diff) |
cxl/debug: Move debugfs init to cxl_core_init()
In preparation for a new cxl debugfs file, move 'cxl' directory
establishment and teardown to the core and let subsequent init routines
reference that setup.
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Link: https://lore.kernel.org/r/165603884654.551046.4962104601691723080.stgit@dwillia2-xfh
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/cxl/core/core.h')
-rw-r--r-- | drivers/cxl/core/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cxl/core/core.h b/drivers/cxl/core/core.h index 1a50c0fc399c..a0808cdaffba 100644 --- a/drivers/cxl/core/core.h +++ b/drivers/cxl/core/core.h @@ -17,9 +17,9 @@ int cxl_send_cmd(struct cxl_memdev *cxlmd, struct cxl_send_command __user *s); void __iomem *devm_cxl_iomap_block(struct device *dev, resource_size_t addr, resource_size_t length); +struct dentry *cxl_debugfs_create_dir(const char *dir); int cxl_memdev_init(void); void cxl_memdev_exit(void); void cxl_mbox_init(void); -void cxl_mbox_exit(void); #endif /* __CXL_CORE_H__ */ |