PCI: acpiphp_ibm: Do not use uninitialized device_class

Passing an uninitialized pnp.device_class string to
acpi_bus_generate_netlink_event() is effectively equivalent
to passing an empty string literal to it.

Accordingly, make the driver do the latter instead of doing the former.

No intentional functional impact.

This will facilitate the removal of device_class from struct
acpi_device_pnp in the future.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patch.msgid.link/8730724.T7Z3S40VBb@rafael.j.wysocki
This commit is contained in:
Rafael J. Wysocki
2026-07-10 15:28:42 -05:00
committed by Bjorn Helgaas
parent dc59e4fea9
commit 985fb7419f
+1 -2
View File
@@ -258,8 +258,7 @@ static void ibm_handle_events(acpi_handle handle, u32 event, void *context)
if (subevent == 0x80) {
pr_debug("%s: generating bus event\n", __func__);
acpi_bus_generate_netlink_event(note->device->pnp.device_class,
dev_name(&note->device->dev),
acpi_bus_generate_netlink_event("", dev_name(&note->device->dev),
note->event, detail);
} else
note->event = event;