]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
platform/x86: wmi: Merge get_event_data() with wmi_get_notify_data()
authorArmin Wolf <W_Armin@gmx.de>
Sun, 1 Sep 2024 03:10:54 +0000 (05:10 +0200)
committerHans de Goede <hdegoede@redhat.com>
Thu, 5 Sep 2024 15:21:59 +0000 (17:21 +0200)
Since get_event_data() is only called by wmi_get_notify_data(), it
makes sense to merge both functions.

Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Armin Wolf <W_Armin@gmx.de>
Link: https://lore.kernel.org/r/20240901031055.3030-5-W_Armin@gmx.de
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/wmi.c

index c7f0754f74b473107b6fa75a53e979109bc1ee01..6b27833ba5d9945d47a1be3a3e139c99e518eba4 100644 (file)
@@ -166,22 +166,6 @@ static inline acpi_object_type get_param_acpi_type(const struct wmi_block *wbloc
                return ACPI_TYPE_BUFFER;
 }
 
-static acpi_status get_event_data(const struct wmi_block *wblock, struct acpi_buffer *out)
-{
-       union acpi_object param = {
-               .integer = {
-                       .type = ACPI_TYPE_INTEGER,
-                       .value = wblock->gblock.notify_id,
-               }
-       };
-       struct acpi_object_list input = {
-               .count = 1,
-               .pointer = &param,
-       };
-
-       return acpi_evaluate_object(wblock->acpi_device->handle, "_WED", &input, out);
-}
-
 static int wmidev_match_guid(struct device *dev, const void *data)
 {
        struct wmi_block *wblock = dev_to_wblock(dev);
@@ -1129,14 +1113,19 @@ static int parse_wdg(struct device *wmi_bus_dev, struct platform_device *pdev)
 static int wmi_get_notify_data(struct wmi_block *wblock, union acpi_object **obj)
 {
        struct acpi_buffer data = { ACPI_ALLOCATE_BUFFER, NULL };
+       union acpi_object param = {
+               .integer = {
+                       .type = ACPI_TYPE_INTEGER,
+                       .value = wblock->gblock.notify_id,
+               }
+       };
+       struct acpi_object_list input = {
+               .count = 1,
+               .pointer = &param,
+       };
        acpi_status status;
 
-       if (test_bit(WMI_NO_EVENT_DATA, &wblock->flags)) {
-               *obj = NULL;
-               return 0;
-       }
-
-       status = get_event_data(wblock, &data);
+       status = acpi_evaluate_object(wblock->acpi_device->handle, "_WED", &input, &data);
        if (ACPI_FAILURE(status)) {
                dev_warn(&wblock->dev.dev, "Failed to get event data\n");
                return -EIO;
@@ -1163,7 +1152,7 @@ static void wmi_notify_driver(struct wmi_block *wblock, union acpi_object *obj)
 static int wmi_notify_device(struct device *dev, void *data)
 {
        struct wmi_block *wblock = dev_to_wblock(dev);
-       union acpi_object *obj;
+       union acpi_object *obj = NULL;
        u32 *event = data;
        int ret;
 
@@ -1179,9 +1168,11 @@ static int wmi_notify_device(struct device *dev, void *data)
         * WMI driver core stops evaluating _WED due to missing
         * WMI event consumers.
         */
-       ret = wmi_get_notify_data(wblock, &obj);
-       if (ret < 0)
-               return -EIO;
+       if (!test_bit(WMI_NO_EVENT_DATA, &wblock->flags)) {
+               ret = wmi_get_notify_data(wblock, &obj);
+               if (ret < 0)
+                       return -EIO;
+       }
 
        down_read(&wblock->notify_lock);
        /* The WMI driver notify handler conflicts with the legacy WMI handler.