Skip to content

Commit 8b9b6a0

Browse files
Kai-Heng Fengjwrdegoede
authored andcommitted
platform/x86: hp-wmi: Ignore Smart Experience App event
Sometimes hp-wmi driver complains on system resume: [ 483.116451] hp_wmi: Unknown event_id - 33 - 0x0 According to HP it's a feature called "HP Smart Experience App" and it's safe to be ignored. Signed-off-by: Kai-Heng Feng <kai.heng.feng@canonical.com> Link: https://lore.kernel.org/r/20221114073842.205392-1-kai.heng.feng@canonical.com Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
1 parent 4a567d1 commit 8b9b6a0

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

drivers/platform/x86/hp-wmi.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ enum hp_wmi_event_ids {
9090
HPWMI_PEAKSHIFT_PERIOD = 0x0F,
9191
HPWMI_BATTERY_CHARGE_PERIOD = 0x10,
9292
HPWMI_SANITIZATION_MODE = 0x17,
93+
HPWMI_SMART_EXPERIENCE_APP = 0x21,
9394
};
9495

9596
/*
@@ -859,6 +860,8 @@ static void hp_wmi_notify(u32 value, void *context)
859860
break;
860861
case HPWMI_SANITIZATION_MODE:
861862
break;
863+
case HPWMI_SMART_EXPERIENCE_APP:
864+
break;
862865
default:
863866
pr_info("Unknown event_id - %d - 0x%x\n", event_id, event_data);
864867
break;

0 commit comments

Comments
 (0)