Message ID | 20210710190810.313104-1-alex.hung@canonical.com (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
Series | platform/x86: remove hardcoded "hp" from the error message | expand |
Hi, On 7/10/21 9:08 PM, Alex Hung wrote: > This driver is no longer specific to HP laptops so "hp" in the error > message is no longer applicable. > > Signed-off-by: Alex Hung <alex.hung@canonical.com> Thank you for your patch, I've applied this patch to my review-hans branch: https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=review-hans Note it will show up in my review-hans branch once I've pushed my local branch there, which might take a while. Once I've run some tests on this branch the patches there will be added to the platform-drivers-x86/for-next branch and eventually will be included in the pdx86 pull-request to Linus for the next merge-window. Regards, Hans > --- > drivers/platform/x86/wireless-hotkey.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > 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; > } >
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; }
This driver is no longer specific to HP laptops so "hp" in the error message is no longer applicable. Signed-off-by: Alex Hung <alex.hung@canonical.com> --- drivers/platform/x86/wireless-hotkey.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)