2023-06-21 15:41:31

by Andy Shevchenko

[permalink] [raw]
Subject: [PATCH v1 2/2] platform/x86: wmi: Replace open coded guid_parse_and_compare()

Even though we have no issues in the code, let's replace the open
coded guid_parse_and_compare().

Signed-off-by: Andy Shevchenko <[email protected]>
---
drivers/platform/x86/wmi.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c
index 098512a53170..a78ddd83cda0 100644
--- a/drivers/platform/x86/wmi.c
+++ b/drivers/platform/x86/wmi.c
@@ -1241,11 +1241,7 @@ static bool guid_already_parsed_for_legacy(struct acpi_device *device, const gui
list_for_each_entry(wblock, &wmi_block_list, list) {
/* skip warning and register if we know the driver will use struct wmi_driver */
for (int i = 0; allow_duplicates[i] != NULL; i++) {
- guid_t tmp;
-
- if (guid_parse(allow_duplicates[i], &tmp))
- continue;
- if (guid_equal(&tmp, guid))
+ if (guid_parse_and_compare(allow_duplicates[i], guid))
return false;
}
if (guid_equal(&wblock->gblock.guid, guid)) {
--
2.40.0.1.gaa8946217a0b



2023-06-21 21:54:44

by Armin Wolf

[permalink] [raw]
Subject: Re: [PATCH v1 2/2] platform/x86: wmi: Replace open coded guid_parse_and_compare()

Am 21.06.23 um 17:11 schrieb Andy Shevchenko:

> Even though we have no issues in the code, let's replace the open
> coded guid_parse_and_compare().
>
> Signed-off-by: Andy Shevchenko <[email protected]>
> ---
> drivers/platform/x86/wmi.c | 6 +-----
> 1 file changed, 1 insertion(+), 5 deletions(-)
>
> diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c
> index 098512a53170..a78ddd83cda0 100644
> --- a/drivers/platform/x86/wmi.c
> +++ b/drivers/platform/x86/wmi.c
> @@ -1241,11 +1241,7 @@ static bool guid_already_parsed_for_legacy(struct acpi_device *device, const gui
> list_for_each_entry(wblock, &wmi_block_list, list) {
> /* skip warning and register if we know the driver will use struct wmi_driver */
> for (int i = 0; allow_duplicates[i] != NULL; i++) {
> - guid_t tmp;
> -
> - if (guid_parse(allow_duplicates[i], &tmp))
> - continue;
> - if (guid_equal(&tmp, guid))
> + if (guid_parse_and_compare(allow_duplicates[i], guid))
> return false;
> }
> if (guid_equal(&wblock->gblock.guid, guid)) {

Works on my Dell Inspiron 3505, so for this patch:
Tested-by: Armin Wolf <[email protected]>

Armin Wolf