PA71HP6 not working

Issue #41 new
devstructor devstructor created an issue

I installed and loaded module. Nothing happens when I use GUI utility.

Setting module parameter also fails:

#!

# sudo su -c 'echo "1" > /sys/module/clevo_xsm_wmi/parameters/kb_off'
bash: /sys/module/clevo_xsm_wmi/parameters/kb_off: Permission denied
  1. uname -a output:
#!

Linux racer 4.9.0-6-amd64 #1 SMP Debian 4.9.82-1+deb9u2 (2018-02-21) x86_64 GNU/Linux

2.dmesg output after modprobe:

#!

[ 1672.260966] input: Clevo Airplane-Mode Hotkey as /devices/platform/clevo_xsm_wmi/input/input26
[ 1672.261136] clevo_xsm_wmi: Polling thread started (PID: 6225), polling at 5 Hz

3.dmidecode output attached as a file

Thanks in advance for looking at my case.

Comments (2)

  1. devstructor devstructor reporter

    It works! It was enough to add following lines to the clevo_xsm_dmi_table:

            {
            .ident = "Clevo PA71HP6",
            .matches = {
                DMI_MATCH(DMI_PRODUCT_NAME, "PA70Hx"),
            },
            .callback = clevo_xsm_dmi_matched,
            .driver_data = &kb_full_color_with_extra_ops,
        },
    
  2. Log in to comment