1. 20 1月, 2016 3 次提交
  2. 24 11月, 2015 2 次提交
  3. 21 11月, 2015 4 次提交
  4. 11 11月, 2015 1 次提交
    • D
      asus-wmi: fix error handling in store_sys_wmi() · b8298340
      Dan Carpenter 提交于
      The asus_wmi_get_devstate_simple() returns 0-1 on success.  In theory
      according to static checkers, it can return either -EIO or -ENODEV on
      failure.  Currently the error handling code only handles -ENODEV and
      -EIO is treated as success.  Let's make it handle the -EIO error as
      well.
      
      It's possible that it can't actually return -EIO and this patch is not
      needed but in that case this patch is harmless and silences a static
      checker warning so it's still worth it.
      Signed-off-by: NDan Carpenter <dan.carpenter@oracle.com>
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      b8298340
  5. 10 11月, 2015 3 次提交
    • H
      ideapad-laptop: Add Lenovo Yoga 900 to no_hw_rfkill dmi list · f71c882d
      Hans de Goede 提交于
      Like some of the other Yoga models the Lenovo Yoga 900 does not have a
      hw rfkill switch, and trying to read the hw rfkill switch through the
      ideapad module causes it to always reported blocking breaking wifi.
      
      This commit adds the Lenovo Yoga 900 to the no_hw_rfkill dmi list, fixing
      the wifi breakage.
      
      BugLink: https://bugzilla.redhat.com/show_bug.cgi?id=1275490
      Cc: stable@vger.kernel.org
      Reported-and-tested-by: NKevin Fenzi <kevin@scrye.com>
      Signed-off-by: NHans de Goede <hdegoede@redhat.com>
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      f71c882d
    • A
      ideapad-laptop: include Yoga 3 1170 in add rfkill whitelist · c789fffc
      Arnd Bergmann 提交于
      This changes the entry to the whitelist of machines that do not have
      a physical rfkill switch. Unfortunately, the Yoga 3 generation seems
      to use upper-case letters for the YOGA 3 Pro-1370, while it uses normal
      capitalization for its Yoga 3 1170 and 1470 siblings.
      
      In order to catch all variants of the Yoga 3, I'm changing both
      the entry for the 1470 (using "Yoga" as the name) and the entry for
      the Pro 1370 (using all-caps "YOGA") to not match the exact model number
      but only the generation. This way, the 1170 and 1470 models share one
      entry, but if the firmware changes from one format to the other, it will
      still work.
      
      The second entry for Yoga 2 Pro that was recently added for some
      reason ended up not being added in alphanumeric order, and I'm
      moving the Yoga 3 1470 entry down while making the change, so they
      are sorted more logically.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      c789fffc
    • A
      ideapad-laptop: add support for Yoga 3 ESC key · 74caab99
      Arnd Bergmann 提交于
      The ideapad-laptop handles most special keys on various Lenovo Laptops
      including the Yoga line. Unfortunately, the Yoga 3 11/13/14 models have
      one important exception, which is the Fn-ESC combination.
      
      On other Lenovo Laptops, this is FnLock, which switches the function keys
      between the primary (Mute, Vol down, Vol up, ...) and the secondary (F1,
      F2, F3, ...) behavior. On the new machines, FnLock is only available
      through BIOS setup (possibly through a yet-to-be-implemented feature
      in this driver) but not through Fn-ESC, but instead the ESC key itself
      switched between ESC and a "Paper Display" app for Windows.
      
      Unfortunately, that means that you can never have both ESC *and* the
      function keys working at the same time without needing to press Fn on
      one of them.
      As pointed out in the official Lenovo Forum by dozens of users, this
      makes the machine rather useless for any serious work [1].
      
      I have now studied the ACPI DSDT one more time and found the event
      that is generated for the ESC key. Unlike all other key events on this
      machine, it is actually a WMI, while the other ones are read from the
      embedded controller.
      
      I am now installing a WMI notifier that uses the event number from the
      WMI subsystem as the scancode. The only event number generated here is
      '128', and that fits in nicely with the two existing ranges of scancodes
      used by the EC: 0-15 for the 16-bit VPCCMD_R_VPC register, 16-17 for
      the VPCCMD_R_NOVO register and 64-67 for VPCCMD_R_SPECIAL_BUTTONS.
      
      The only sane way to handle this button (in absence of the Windows Paper
      Display driver) seems to be to have it emit KEY_ESC, so that is what
      I use as the default. Should any user ever want to overwrite the default,
      they can install their own keymap.
      
      To ensure that we can still build the driver without adding a CONFIG_WMI
      dependency, all new code is enclosed in #ifdef.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      
      [1] https://forums.lenovo.com/t5/Lenovo-Yoga-Series-Notebooks/YOGA-3-14-How-to-reclaim-my-Esc-key-and-permanently-disable/td-p/2070816Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      74caab99
  6. 07 11月, 2015 1 次提交
  7. 06 11月, 2015 1 次提交
  8. 31 10月, 2015 1 次提交
  9. 21 10月, 2015 1 次提交
    • L
      vga_switcheroo: Constify vga_switcheroo_handler · 5d170139
      Lukas Wunner 提交于
      vga_switcheroo_client_ops has always been declared const since its
      introduction with 26ec685f ("vga_switcheroo: Introduce struct
      vga_switcheroo_client_ops").
      
      Do so for vga_switcheroo_handler as well.
      
       drivers/gpu/drm/amd/amdgpu/amdgpu.ko:
         6 .rodata       00009888
      - 19 .data         00001f00
      + 19 .data         00001ee0
       drivers/gpu/drm/nouveau/nouveau.ko:
         6 .rodata       000460b8
        17 .data         00018fe0
       drivers/gpu/drm/radeon/radeon.ko:
      -  7 .rodata       00030944
      +  7 .rodata       00030964
      - 21 .data         0000d6a0
      + 21 .data         0000d678
       drivers/platform/x86/apple-gmux.ko:
      -  7 .rodata       00000140
      +  7 .rodata       00000160
      - 11 .data         000000e0
      + 11 .data         000000b8
      
      Cc: Ben Skeggs <bskeggs@redhat.com>
      Cc: Darren Hart <dvhart@linux.intel.com>
      Cc: Alex Deucher <alexander.deucher@amd.com>
      Signed-off-by: NLukas Wunner <lukas@wunner.de>
      Reviewed-by: Christian König <christian.koenig@amd.com>.
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      5d170139
  10. 15 10月, 2015 6 次提交
  11. 10 10月, 2015 1 次提交
  12. 07 10月, 2015 1 次提交
    • L
      acer-wmi: remove threeg and interface sysfs interfaces · c4602280
      Lee, Chun-Yi 提交于
      Since v3.0 kernel, acer-wmi driver auto detects internal 3G device and
      provides the threeg rfkill interface. So the sysfs interface of 3G is
      no longer necessary now.
      
      The 7b8aca65 patch added kernel information log to remind to user space
      for the threeg sysfs interface will be removed in 2012, then b58b9ffc patch
      updated the interface removing time to 2014.
      
      I think the 3 years lead time is enough for user space application to use
      rfkill instead of sysfs interface to control 3G device.
      
      This patch removes code about threeg sysfs interface. And it also removes the
      unused interface sysfs that exposes which ACPI-WMI method used by acer-wmi
      driver on the machine. The information is already exposed by the acer-wmi
      initial log.
      
      Cc: Carlos Corbacho <carlos@strangeworlds.co.uk>
      Cc: Matthew Garrett <mjg59@srcf.ucam.org>
      Cc: Dmitry Torokhov <dtor@mail.ru>
      Cc: Corentin Chary <corentincj@iksaif.net>
      Cc: Martin Kepplinger <martink@posteo.de>
      Cc: Darren Hart <dvhart@infradead.org>
      Signed-off-by: NLee, Chun-Yi <jlee@suse.com>
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      c4602280
  13. 04 10月, 2015 3 次提交
    • A
      platform/x86: Toshiba WMI Hotkey Driver · 14991fc7
      Azael Avalos 提交于
      Toshiba laptops that feature WMI events for hotkeys were left unsupported
      by the toshiba_acpi driver, however, commit a88bc06e ("toshiba_acpi:
      Avoid registering input device on WMI event laptops") added hardware
      support for such laptops, but the hotkeys are not handled there.
      
      This driver adds support for hotkey monitoring on certain Toshiba laptops
      that manage the hotkeys via WMI events instead of the Toshiba
      Configuration Interface (TCI).
      
      The toshiba_acpi driver and this one can co-exist, as this only takes
      care of hotkeys, while the proper takes care of hardware related stuff.
      
      Currently the driver is under the EXPERIMENTAL flag, as the keymap
      and the notify function are incomplete (due to lack of hardware to test).
      Signed-off-by: NAzael Avalos <coproscefalo@gmail.com>
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      14991fc7
    • A
      sony-laptop: Fix handling sony_nc_hotkeys_decode result · 963406ff
      Andrzej Hajda 提交于
      sony_nv_hotkeys_decode can return a negative value. real_ev is a u32 variable.
      The check for real_ev > 0 is incorrect.
      
      Use an intermediate ret variable.
      
      The problem has been detected using proposed semantic patch
      scripts/coccinelle/tests/assign_signed_to_unsigned.cocci [1].
      
      [1]: http://permalink.gmane.org/gmane.linux.kernel/2046107Signed-off-by: NAndrzej Hajda <a.hajda@samsung.com>
      [dvhart: clarify commit msg, drop superfluous else block]
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      963406ff
    • S
      intel_mid_powerbtn: Remove misuse of IRQF_NO_SUSPEND flag · daea5a65
      Sudeep Holla 提交于
      The IRQF_NO_SUSPEND flag is used to identify the interrupts that should
      be left enabled so as to allow them to work as expected during the
      suspend-resume cycle, but doesn't guarantee that it will wake the system
      from a suspended state, enable_irq_wake is recommended to be used for
      the wakeup.
      
      This patch removes the use of IRQF_NO_SUSPEND flags and uses newly
      introduce PM wakeup APIs dev_pm_{set,clear}_wake_irq.
      
      Cc: Darren Hart <dvhart@infradead.org>
      Cc: platform-driver-x86@vger.kernel.org
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      daea5a65
  14. 03 10月, 2015 6 次提交
  15. 18 9月, 2015 1 次提交
    • K
      hp-wmi: limit hotkey enable · 8a1513b4
      Kyle Evans 提交于
      Do not write initialize magic on systems that do not have
      feature query 0xb. Fixes Bug #82451.
      
      Redefine FEATURE_QUERY to align with 0xb and FEATURE2 with 0xd
      for code clearity.
      
      Add a new test function, hp_wmi_bios_2008_later() & simplify
      hp_wmi_bios_2009_later(), which fixes a bug in cases where
      an improper value is returned. Probably also fixes Bug #69131.
      
      Add missing __init tag.
      Signed-off-by: NKyle Evans <kvans32@gmail.com>
      Cc: stable@vger.kernel.org
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      8a1513b4
  16. 11 9月, 2015 3 次提交
    • A
      toshiba_acpi: Fix hotkeys registration on some toshiba models · 53147b6c
      Azael Avalos 提交于
      Commit a2b3471b ("toshiba_acpi: Use the Hotkey Event Type function
      for keymap choosing") changed the *setup_keyboard function to query for
      the Hotkey Event Type to help choose the correct keymap, but turns out
      that here are certain Toshiba models out there not implementing this
      feature, and thus, failing to continue the input device registration and
      leaving such laptops without hotkey support.
      
      This patch changes such check, and instead of returning an error if
      the Hotkey Event Type is not present, we simply inform userspace about it,
      changing the message printed from err to notice, making the function
      responsible for registering the input device to continue.
      
      This issue was found on a Toshiba Portege Z30-B, but there might be
      some other models out there affected by this regression as well.
      
      Cc: <stable@vger.kernel.org> # 4.1+
      Signed-off-by: NAzael Avalos <coproscefalo@gmail.com>
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      53147b6c
    • A
      toshiba_acpi: Fix USB Sleep and Music always disabled · cf680eae
      Azael Avalos 提交于
      Commit e1a949c1 ("toshiba_acpi: Refactor *{get, set} functions return
      value") made changes on the return type of the HCI/SCI functions, but a
      typo on the USB Sleep and Music code is always reporting non existent
      support for such feature.
      
      This patch corrects the typo, changing an assignment to a comparison,
      making the laptops with actual support for such feature to work again.
      Signed-off-by: NAzael Avalos <coproscefalo@gmail.com>
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      cf680eae
    • R
      wmi: Remove private %pUL implementation · 85b4e4eb
      Rasmus Villemoes 提交于
      The work performed by wmi_gtoa is equivalent to simply sprintf(out,
      "%pUL", in), so one could replace its body by this. However, most
      users feed the result directly as a %s argument to some other function
      which also understands the %p extensions (they all ultimately use
      vsnprintf), so we can eliminate some stack buffers and quite a bit of
      code by just using %pUL directly.
      
      In wmi_dev_uevent I'm not sure whether there's room for a
      nul-terminator in env->buf, so I've just replaced wmi_gtoa with the
      equivalent sprintf call.
      Signed-off-by: NRasmus Villemoes <linux@rasmusvillemoes.dk>
      Signed-off-by: NDarren Hart <dvhart@linux.intel.com>
      85b4e4eb
  17. 07 9月, 2015 1 次提交
  18. 29 8月, 2015 1 次提交