diff options
Diffstat (limited to 'arch/x86/kernel/pmem.c')
-rw-r--r-- | arch/x86/kernel/pmem.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/x86/kernel/pmem.c b/arch/x86/kernel/pmem.c index 4f00b63d7ff3..14415aff1813 100644 --- a/arch/x86/kernel/pmem.c +++ b/arch/x86/kernel/pmem.c | |||
@@ -4,10 +4,22 @@ | |||
4 | */ | 4 | */ |
5 | #include <linux/platform_device.h> | 5 | #include <linux/platform_device.h> |
6 | #include <linux/module.h> | 6 | #include <linux/module.h> |
7 | #include <linux/ioport.h> | ||
8 | |||
9 | static int found(u64 start, u64 end, void *data) | ||
10 | { | ||
11 | return 1; | ||
12 | } | ||
7 | 13 | ||
8 | static __init int register_e820_pmem(void) | 14 | static __init int register_e820_pmem(void) |
9 | { | 15 | { |
16 | char *pmem = "Persistent Memory (legacy)"; | ||
10 | struct platform_device *pdev; | 17 | struct platform_device *pdev; |
18 | int rc; | ||
19 | |||
20 | rc = walk_iomem_res(pmem, IORESOURCE_MEM, 0, -1, NULL, found); | ||
21 | if (rc <= 0) | ||
22 | return 0; | ||
11 | 23 | ||
12 | /* | 24 | /* |
13 | * See drivers/nvdimm/e820.c for the implementation, this is | 25 | * See drivers/nvdimm/e820.c for the implementation, this is |