Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a2806c6f authored by Thomas Renninger's avatar Thomas Renninger Committed by Matthew Garrett
Browse files

x86 platform drivers: hp-wmi Use consistent prefix string for messages.



Signed-off-by: default avatarThomas Renninger <trenn@suse.de>
Signed-off-by: default avatarMatthew Garrett <mjg@redhat.com>
CC: linux-acpi@vger.kernel.org
CC: platform-driver-x86@vger.kernel.org
parent da9a79ba
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -52,6 +52,8 @@ MODULE_ALIAS("wmi:5FB7F034-2C63-45e9-BE91-3D44E2C707E4");
#define HPWMI_WIRELESS_QUERY 0x5
#define HPWMI_HOTKEY_QUERY 0xc

#define PREFIX "HP WMI: "

enum hp_wmi_radio {
	HPWMI_WIFI = 0,
	HPWMI_BLUETOOTH = 1,
@@ -349,14 +351,14 @@ static void hp_wmi_notify(u32 value, void *context)

	status = wmi_get_event_data(value, &response);
	if (status != AE_OK) {
		printk(KERN_INFO "hp-wmi: bad event status 0x%x\n", status);
		printk(KERN_INFO PREFIX "bad event status 0x%x\n", status);
		return;
	}

	obj = (union acpi_object *)response.pointer;

	if (!obj || obj->type != ACPI_TYPE_BUFFER || obj->buffer.length != 8) {
		printk(KERN_INFO "HP WMI: Unknown response received\n");
		printk(KERN_INFO PREFIX "Unknown response received\n");
		kfree(obj);
		return;
	}
@@ -387,7 +389,7 @@ static void hp_wmi_notify(u32 value, void *context)
				break;
			}
		} else
			printk(KERN_INFO "HP WMI: Unknown key code - 0x%x\n",
			printk(KERN_INFO PREFIX "Unknown key code - 0x%x\n",
			       key_code);
		break;
	case HPWMI_WIRELESS:
@@ -405,7 +407,7 @@ static void hp_wmi_notify(u32 value, void *context)
					  hp_wmi_get_hw_state(HPWMI_WWAN));
		break;
	default:
		printk(KERN_INFO "HP WMI: Unknown eventcode - %d\n",
		printk(KERN_INFO PREFIX "Unknown eventcode - %d\n",
		       eventcode);
		break;
	}