From: Alex Hung Date: Sat, 10 Jul 2021 19:08:10 +0000 (-0600) Subject: platform/x86: wireless-hotkey: remove hardcoded "hp" from the error message X-Git-Tag: v5.14-rc4~20^2~7 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=23e9592b06b43cea4d6799843795beca13437907;p=linux-2.6-block.git platform/x86: wireless-hotkey: remove hardcoded "hp" from the error message This driver is no longer specific to HP laptops so "hp" in the error message is no longer applicable. Signed-off-by: Alex Hung Link: https://lore.kernel.org/r/20210710190810.313104-1-alex.hung@canonical.com Signed-off-by: Hans de Goede --- diff --git a/drivers/platform/x86/wireless-hotkey.c b/drivers/platform/x86/wireless-hotkey.c index b010e4ca3383..11c60a273446 100644 --- a/drivers/platform/x86/wireless-hotkey.c +++ b/drivers/platform/x86/wireless-hotkey.c @@ -78,7 +78,7 @@ static int wl_add(struct acpi_device *device) err = wireless_input_setup(); if (err) - pr_err("Failed to setup hp wireless hotkeys\n"); + pr_err("Failed to setup wireless hotkeys\n"); return err; }