Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1408639 > unrolled thread

Fwd: WMI driver no longer load after switching to generic UUID library

Started byKui Zhang <kuizhang@gmail.com>
First post2016-05-29 20:40 +0200
Last post2016-05-29 20:40 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Fwd: WMI driver no longer load after switching to generic UUID library Kui Zhang <kuizhang@gmail.com> - 2016-05-29 20:40 +0200

#1408639 — Fwd: WMI driver no longer load after switching to generic UUID library

FromKui Zhang <kuizhang@gmail.com>
Date2016-05-29 20:40 +0200
SubjectFwd: WMI driver no longer load after switching to generic UUID library
Message-ID<rEdN0-1qk-27@gated-at.bofh.it>
oops, forgot the list.


---------- Forwarded message ----------
From: Kui Zhang <kuizhang@gmail.com>
Date: Sun, May 29, 2016 at 11:35 AM
Subject: WMI driver no longer load after switching to generic UUID library
To: andriy.shevchenko@linux.intel.com, dvhart@linux.intel.com,
akpm@linux-foundation.org, torvalds@linux-foundation.org


Hello,

After this:

commit 538d7eb86d58b3d7d73f3bb3ff960c4bdf411c1a
drivers/platform/x86/wmi.c: use generic UUID library


some keyboard functions stopped working:

clevo-wmi - git://git.code.sf.net/p/clevo-wmi/code
[   83.877887] Clevo Get GUID not found


/*
#define CLWMI_GET_GUID "ABBC0F6D-8EA1-11d1-00A0-C90629100000"

...

    if(!wmi_has_guid(CLWMI_GET_GUID)) {
        pr_err("Clevo Get GUID not found\n");
        return -ENODEV;
    }


*/



clevo-xsm-wmi - https://bitbucket.org/lynthium/clevo-xsm-wmi.git
insmod: ERROR: could not insert module clevo-xsm-wmi.ko: No such device

/*

#define CLEVO_GET_GUID    "ABBC0F6D-8EA1-11D1-00A0-C90629100000"

...

    if (!wmi_has_guid(CLEVO_GET_GUID)) {
        CLEVO_XSM_INFO("No known WMI control method GUID found\n");
        return -ENODEV;
    }

*/


thanks
Kui.Z

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web