1. 18 Dec, 2016 1 commit
  2. 16 Dec, 2016 2 commits
  3. 12 Dec, 2016 7 commits
  4. 08 Dec, 2016 2 commits
  5. 03 Dec, 2016 4 commits
  6. 01 Dec, 2016 5 commits
  7. 30 Nov, 2016 5 commits
  8. 29 Nov, 2016 3 commits
  9. 28 Nov, 2016 3 commits
  10. 25 Nov, 2016 2 commits
  11. 23 Nov, 2016 4 commits
  12. 17 Nov, 2016 2 commits
    • Sudeep Holla's avatar
      Input: gpio_keys - set input direction explicitly · dadbb0aa
      Sudeep Holla authored
      Commit 700a38b2 ("Input: gpio_keys - switch to using generic device
      properties") switched to use generic device properties for GPIO keys and
      commit 5feeca3c ("Input: gpio_keys - add support for GPIO descriptors")
      switched from legacy GPIO numbers to GPIO descriptors.
      
      Previously devm_gpio_request_one was explicitly passed GPIOF_DIR_IN flag
      to set the GPIO direction as input. However devm_get_gpiod_from_child
      doesn't have such provisions and hence fwnode_get_named_gpiod can't set
      it as input.
      
      This breaks few platforms with the following error:
      " gpiochip_lock_as_irq: tried to flag a GPIO set as output for IRQ
        unable to lock HW IRQ <n> for IRQ
        genirq: Failed to request resources for POWER (irq <x>) on irqchip
        gpio_keys: Unable to claim irq <x>; error -22
        gpio-keys: probe failed with error -22 "
      
      This patch fixes the issue by setting input direction explicitly for
      gpio lines described by generic properties.
      
      Fixes: 700a38b2 ("Input: gpio_keys - switch to using generic device properties")
      Signed-off-by: default avatarSudeep Holla <sudeep.holla@arm.com>
      Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
      dadbb0aa
    • Dan Carpenter's avatar
      Input: synaptics-rmi4 - unlock on error · 792f497b
      Dan Carpenter authored
      We should unlock before returning on this error path.
      
      Fixes: 3a762dbd ('[media] Input: synaptics-rmi4 - add support for F54 diagnostics')
      Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
      Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
      792f497b