diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-04-22 16:05:39 +0300 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2020-04-22 16:26:03 -0700 |
commit | f37b451f45a2fb0704b5d152563c921639f98eb8 (patch) | |
tree | cc5530fd871c714d44988406304e724912e2fecb /drivers/acpi/nfit/core.c | |
parent | ae83d0b416db002fe95601e7f97f64b59514d936 (diff) | |
download | linux-stable-f37b451f45a2fb0704b5d152563c921639f98eb8.tar.gz linux-stable-f37b451f45a2fb0704b5d152563c921639f98eb8.tar.bz2 linux-stable-f37b451f45a2fb0704b5d152563c921639f98eb8.zip |
libnvdimm: Replace guid_copy() with import_guid() where it makes sense
There is a specific API to treat raw data as GUID, i.e. import_guid().
Use it instead of guid_copy() with explicit casting.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Ira Weiny <ira.weiny@intel.com>
Link: https://lore.kernel.org/r/20200422130539.45636-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/acpi/nfit/core.c')
-rw-r--r-- | drivers/acpi/nfit/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/nfit/core.c b/drivers/acpi/nfit/core.c index fa4500f9cfd1..7c138a4edc03 100644 --- a/drivers/acpi/nfit/core.c +++ b/drivers/acpi/nfit/core.c @@ -2293,7 +2293,7 @@ static int acpi_nfit_init_interleave_set(struct acpi_nfit_desc *acpi_desc, nd_set = devm_kzalloc(dev, sizeof(*nd_set), GFP_KERNEL); if (!nd_set) return -ENOMEM; - guid_copy(&nd_set->type_guid, (guid_t *) spa->range_guid); + import_guid(&nd_set->type_guid, spa->range_guid); info = devm_kzalloc(dev, sizeof_nfit_set_info(nr), GFP_KERNEL); if (!info) |