diff options
author | Will Deacon <will.deacon@arm.com> | 2017-06-20 14:11:48 -0400 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2017-06-20 14:11:48 -0400 |
commit | dd19802f2a224486c7f9a43bccd92e36c25afed9 (patch) | |
tree | fff94fd674f5d25604dc13447577f9a9f84a1835 /tools | |
parent | 3c2993b8c6143d8a5793746a54eba8f86f95240f (diff) | |
parent | 87085ff2e90ecfa91f8bb0cb0ce19ea661bd6f83 (diff) |
Merge branch 'uuid-types' of git://git.infradead.org/users/hch/uuid into aarch64/for-next/ras-apei
Pull in uuid-types branch from Christoph, since this conflicts heavily
with the ACPI/APEI RAS work from Tyler Baicer and was created as an
immutable branch to avoid conflicts with ACPI development.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/nvdimm/test/iomap.c | 6 | ||||
-rw-r--r-- | tools/testing/nvdimm/test/nfit.c | 2 | ||||
-rw-r--r-- | tools/testing/nvdimm/test/nfit_test.h | 4 |
3 files changed, 7 insertions, 5 deletions
diff --git a/tools/testing/nvdimm/test/iomap.c b/tools/testing/nvdimm/test/iomap.c index 64cae1a5deff..e1f75a1914a1 100644 --- a/tools/testing/nvdimm/test/iomap.c +++ b/tools/testing/nvdimm/test/iomap.c | |||
@@ -370,7 +370,7 @@ acpi_status __wrap_acpi_evaluate_object(acpi_handle handle, acpi_string path, | |||
370 | } | 370 | } |
371 | EXPORT_SYMBOL(__wrap_acpi_evaluate_object); | 371 | EXPORT_SYMBOL(__wrap_acpi_evaluate_object); |
372 | 372 | ||
373 | union acpi_object * __wrap_acpi_evaluate_dsm(acpi_handle handle, const u8 *uuid, | 373 | union acpi_object * __wrap_acpi_evaluate_dsm(acpi_handle handle, const guid_t *guid, |
374 | u64 rev, u64 func, union acpi_object *argv4) | 374 | u64 rev, u64 func, union acpi_object *argv4) |
375 | { | 375 | { |
376 | union acpi_object *obj = ERR_PTR(-ENXIO); | 376 | union acpi_object *obj = ERR_PTR(-ENXIO); |
@@ -379,11 +379,11 @@ union acpi_object * __wrap_acpi_evaluate_dsm(acpi_handle handle, const u8 *uuid, | |||
379 | rcu_read_lock(); | 379 | rcu_read_lock(); |
380 | ops = list_first_or_null_rcu(&iomap_head, typeof(*ops), list); | 380 | ops = list_first_or_null_rcu(&iomap_head, typeof(*ops), list); |
381 | if (ops) | 381 | if (ops) |
382 | obj = ops->evaluate_dsm(handle, uuid, rev, func, argv4); | 382 | obj = ops->evaluate_dsm(handle, guid, rev, func, argv4); |
383 | rcu_read_unlock(); | 383 | rcu_read_unlock(); |
384 | 384 | ||
385 | if (IS_ERR(obj)) | 385 | if (IS_ERR(obj)) |
386 | return acpi_evaluate_dsm(handle, uuid, rev, func, argv4); | 386 | return acpi_evaluate_dsm(handle, guid, rev, func, argv4); |
387 | return obj; | 387 | return obj; |
388 | } | 388 | } |
389 | EXPORT_SYMBOL(__wrap_acpi_evaluate_dsm); | 389 | EXPORT_SYMBOL(__wrap_acpi_evaluate_dsm); |
diff --git a/tools/testing/nvdimm/test/nfit.c b/tools/testing/nvdimm/test/nfit.c index c2187178fb13..28859da78edf 100644 --- a/tools/testing/nvdimm/test/nfit.c +++ b/tools/testing/nvdimm/test/nfit.c | |||
@@ -1559,7 +1559,7 @@ static unsigned long nfit_ctl_handle; | |||
1559 | union acpi_object *result; | 1559 | union acpi_object *result; |
1560 | 1560 | ||
1561 | static union acpi_object *nfit_test_evaluate_dsm(acpi_handle handle, | 1561 | static union acpi_object *nfit_test_evaluate_dsm(acpi_handle handle, |
1562 | const u8 *uuid, u64 rev, u64 func, union acpi_object *argv4) | 1562 | const guid_t *guid, u64 rev, u64 func, union acpi_object *argv4) |
1563 | { | 1563 | { |
1564 | if (handle != &nfit_ctl_handle) | 1564 | if (handle != &nfit_ctl_handle) |
1565 | return ERR_PTR(-ENXIO); | 1565 | return ERR_PTR(-ENXIO); |
diff --git a/tools/testing/nvdimm/test/nfit_test.h b/tools/testing/nvdimm/test/nfit_test.h index f54c0032c6ff..d3d63dd5ed38 100644 --- a/tools/testing/nvdimm/test/nfit_test.h +++ b/tools/testing/nvdimm/test/nfit_test.h | |||
@@ -13,6 +13,7 @@ | |||
13 | #ifndef __NFIT_TEST_H__ | 13 | #ifndef __NFIT_TEST_H__ |
14 | #define __NFIT_TEST_H__ | 14 | #define __NFIT_TEST_H__ |
15 | #include <linux/list.h> | 15 | #include <linux/list.h> |
16 | #include <linux/uuid.h> | ||
16 | #include <linux/ioport.h> | 17 | #include <linux/ioport.h> |
17 | #include <linux/spinlock_types.h> | 18 | #include <linux/spinlock_types.h> |
18 | 19 | ||
@@ -36,7 +37,8 @@ typedef void *acpi_handle; | |||
36 | 37 | ||
37 | typedef struct nfit_test_resource *(*nfit_test_lookup_fn)(resource_size_t); | 38 | typedef struct nfit_test_resource *(*nfit_test_lookup_fn)(resource_size_t); |
38 | typedef union acpi_object *(*nfit_test_evaluate_dsm_fn)(acpi_handle handle, | 39 | typedef union acpi_object *(*nfit_test_evaluate_dsm_fn)(acpi_handle handle, |
39 | const u8 *uuid, u64 rev, u64 func, union acpi_object *argv4); | 40 | const guid_t *guid, u64 rev, u64 func, |
41 | union acpi_object *argv4); | ||
40 | void __iomem *__wrap_ioremap_nocache(resource_size_t offset, | 42 | void __iomem *__wrap_ioremap_nocache(resource_size_t offset, |
41 | unsigned long size); | 43 | unsigned long size); |
42 | void __wrap_iounmap(volatile void __iomem *addr); | 44 | void __wrap_iounmap(volatile void __iomem *addr); |