Skip to content

Commit 8b9b6a0

Browse files
khfengjwrdegoede
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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Hans de Goede <[email protected]> Signed-off-by: Hans de Goede <[email protected]>
1 parent 4a567d1 commit 8b9b6a0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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)