ACPI: device property: Switch to use new generic UUID API
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 19 Jul 2017 18:28:57 +0000 (21:28 +0300)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 26 Jul 2017 00:37:45 +0000 (02:37 +0200)
There are new types and helpers that are supposed to be used in new code.

As a preparation to get rid of legacy types and API functions do
the conversion here.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/property.c

index 681a843..a65c09c 100644 (file)
@@ -24,16 +24,14 @@ static int acpi_data_get_property_array(const struct acpi_device_data *data,
                                        acpi_object_type type,
                                        const union acpi_object **obj);
 
-/* ACPI _DSD device properties UUID: daffd814-6eba-4d8c-8a91-bc9bbf4aa301 */
-static const u8 prp_uuid[16] = {
-       0x14, 0xd8, 0xff, 0xda, 0xba, 0x6e, 0x8c, 0x4d,
-       0x8a, 0x91, 0xbc, 0x9b, 0xbf, 0x4a, 0xa3, 0x01
-};
-/* ACPI _DSD data subnodes UUID: dbb8e3e6-5886-4ba6-8795-1319f52a966b */
-static const u8 ads_uuid[16] = {
-       0xe6, 0xe3, 0xb8, 0xdb, 0x86, 0x58, 0xa6, 0x4b,
-       0x87, 0x95, 0x13, 0x19, 0xf5, 0x2a, 0x96, 0x6b
-};
+/* ACPI _DSD device properties GUID: daffd814-6eba-4d8c-8a91-bc9bbf4aa301 */
+static const guid_t prp_guid =
+       GUID_INIT(0xdaffd814, 0x6eba, 0x4d8c,
+                 0x8a, 0x91, 0xbc, 0x9b, 0xbf, 0x4a, 0xa3, 0x01);
+/* ACPI _DSD data subnodes GUID: dbb8e3e6-5886-4ba6-8795-1319f52a966b */
+static const guid_t ads_guid =
+       GUID_INIT(0xdbb8e3e6, 0x5886, 0x4ba6,
+                 0x87, 0x95, 0x13, 0x19, 0xf5, 0x2a, 0x96, 0x6b);
 
 static bool acpi_enumerate_nondev_subnodes(acpi_handle scope,
                                           const union acpi_object *desc,
@@ -189,22 +187,23 @@ static bool acpi_enumerate_nondev_subnodes(acpi_handle scope,
 {
        int i;
 
-       /* Look for the ACPI data subnodes UUID. */
+       /* Look for the ACPI data subnodes GUID. */
        for (i = 0; i < desc->package.count; i += 2) {
-               const union acpi_object *uuid, *links;
+               const union acpi_object *guid, *links;
 
-               uuid = &desc->package.elements[i];
+               guid = &desc->package.elements[i];
                links = &desc->package.elements[i + 1];
 
                /*
-                * The first element must be a UUID and the second one must be
+                * The first element must be a GUID and the second one must be
                 * a package.
                 */
-               if (uuid->type != ACPI_TYPE_BUFFER || uuid->buffer.length != 16
-                   || links->type != ACPI_TYPE_PACKAGE)
+               if (guid->type != ACPI_TYPE_BUFFER ||
+                   guid->buffer.length != 16 ||
+                   links->type != ACPI_TYPE_PACKAGE)
                        break;
 
-               if (memcmp(uuid->buffer.pointer, ads_uuid, sizeof(ads_uuid)))
+               if (!guid_equal((guid_t *)guid->buffer.pointer, &ads_guid))
                        continue;
 
                return acpi_add_nondev_subnodes(scope, links, &data->subnodes,
@@ -297,26 +296,27 @@ static bool acpi_extract_properties(const union acpi_object *desc,
        if (desc->package.count % 2)
                return false;
 
-       /* Look for the device properties UUID. */
+       /* Look for the device properties GUID. */
        for (i = 0; i < desc->package.count; i += 2) {
-               const union acpi_object *uuid, *properties;
+               const union acpi_object *guid, *properties;
 
-               uuid = &desc->package.elements[i];
+               guid = &desc->package.elements[i];
                properties = &desc->package.elements[i + 1];
 
                /*
-                * The first element must be a UUID and the second one must be
+                * The first element must be a GUID and the second one must be
                 * a package.
                 */
-               if (uuid->type != ACPI_TYPE_BUFFER || uuid->buffer.length != 16
-                   || properties->type != ACPI_TYPE_PACKAGE)
+               if (guid->type != ACPI_TYPE_BUFFER ||
+                   guid->buffer.length != 16 ||
+                   properties->type != ACPI_TYPE_PACKAGE)
                        break;
 
-               if (memcmp(uuid->buffer.pointer, prp_uuid, sizeof(prp_uuid)))
+               if (!guid_equal((guid_t *)guid->buffer.pointer, &prp_guid))
                        continue;
 
                /*
-                * We found the matching UUID. Now validate the format of the
+                * We found the matching GUID. Now validate the format of the
                 * package immediately following it.
                 */
                if (!acpi_properties_format_valid(properties))