diff options
| -rw-r--r-- | tools/testing/nvdimm/Kbuild | 1 | ||||
| -rw-r--r-- | tools/testing/nvdimm/test/iomap.c | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/tools/testing/nvdimm/Kbuild b/tools/testing/nvdimm/Kbuild index 8e9b64520ec1..8e020601c773 100644 --- a/tools/testing/nvdimm/Kbuild +++ b/tools/testing/nvdimm/Kbuild | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | ldflags-y += --wrap=ioremap_wt | ||
| 1 | ldflags-y += --wrap=ioremap_cache | 2 | ldflags-y += --wrap=ioremap_cache |
| 2 | ldflags-y += --wrap=ioremap_nocache | 3 | ldflags-y += --wrap=ioremap_nocache |
| 3 | ldflags-y += --wrap=iounmap | 4 | ldflags-y += --wrap=iounmap |
diff --git a/tools/testing/nvdimm/test/iomap.c b/tools/testing/nvdimm/test/iomap.c index c85a6f6ba559..9f21b150396b 100644 --- a/tools/testing/nvdimm/test/iomap.c +++ b/tools/testing/nvdimm/test/iomap.c | |||
| @@ -77,6 +77,12 @@ void __iomem *__wrap_ioremap_nocache(resource_size_t offset, unsigned long size) | |||
| 77 | } | 77 | } |
| 78 | EXPORT_SYMBOL(__wrap_ioremap_nocache); | 78 | EXPORT_SYMBOL(__wrap_ioremap_nocache); |
| 79 | 79 | ||
| 80 | void __iomem *__wrap_ioremap_wt(resource_size_t offset, unsigned long size) | ||
| 81 | { | ||
| 82 | return __nfit_test_ioremap(offset, size, ioremap_wt); | ||
| 83 | } | ||
| 84 | EXPORT_SYMBOL(__wrap_ioremap_wt); | ||
| 85 | |||
| 80 | void __wrap_iounmap(volatile void __iomem *addr) | 86 | void __wrap_iounmap(volatile void __iomem *addr) |
| 81 | { | 87 | { |
| 82 | struct nfit_test_resource *nfit_res; | 88 | struct nfit_test_resource *nfit_res; |
