1. 16 4月, 2012 1 次提交
  2. 17 3月, 2012 1 次提交
  3. 16 3月, 2012 1 次提交
  4. 05 3月, 2012 1 次提交
  5. 31 1月, 2012 1 次提交
  6. 12 12月, 2011 1 次提交
  7. 01 12月, 2011 1 次提交
    • H
      Input: add generic GPIO-tilt driver · 3bfd5c5b
      Heiko Stübner 提交于
      There exist tilt switches that simply report their tilt-state via
      some gpios. The number and orientation of their axes can vary
      depending on the switch used and the build of the device. Also two
      or more one-axis switches could be combined to provide multi-dimensional
      orientation.
      
      One example of a device using such a switch is the family of Qisda
      ebook readers, where the switch provides information about the
      landscape / portrait orientation of the device. The example in
      Documentation/input/gpio-tilt.txt documents exactly this one-axis
      device.
      Signed-off-by: NHeiko Stuebner <heiko@sntech.de>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      3bfd5c5b
  8. 24 10月, 2011 1 次提交
  9. 22 9月, 2011 1 次提交
  10. 09 8月, 2011 1 次提交
  11. 03 8月, 2011 1 次提交
  12. 07 7月, 2011 1 次提交
  13. 05 7月, 2011 1 次提交
  14. 04 7月, 2011 1 次提交
  15. 29 6月, 2011 1 次提交
  16. 22 6月, 2011 1 次提交
  17. 27 5月, 2011 1 次提交
  18. 17 3月, 2011 1 次提交
  19. 29 12月, 2010 1 次提交
  20. 01 12月, 2010 1 次提交
  21. 06 9月, 2010 1 次提交
  22. 14 7月, 2010 1 次提交
  23. 25 6月, 2010 1 次提交
  24. 22 5月, 2010 1 次提交
  25. 14 4月, 2010 3 次提交
  26. 09 3月, 2010 1 次提交
  27. 08 3月, 2010 1 次提交
  28. 08 12月, 2009 2 次提交
  29. 03 11月, 2009 1 次提交
  30. 24 9月, 2009 1 次提交
    • I
      input: fix build failures caused by Kconfig Winbond WPCD376I Consumer IR... · d2b5ec3a
      Ingo Molnar 提交于
      input: fix build failures caused by Kconfig Winbond WPCD376I Consumer IR hardware driver Kconfig entry
      
      Fix these warnings:
      
        drivers/built-in.o: In function `apanel_remove':
        apanel.c:(.text+0x56e852): undefined reference to `led_classdev_unregister'
        drivers/built-in.o: In function `apanel_probe':
        apanel.c:(.text+0x56eae3): undefined reference to `led_classdev_register'
        drivers/built-in.o: In function `acpi_fujitsu_hotkey_add':
        fujitsu-laptop.c:(.text+0x5d7647): undefined reference to `led_classdev_register'
        fujitsu-laptop.c:(.text+0x5d76b5): undefined reference to `led_classdev_register'
        drivers/built-in.o: In function `wbcir_probe':
        winbond-cir.c:(.devinit.text+0x5f375): undefined reference to `led_classdev_register'
        winbond-cir.c:(.devinit.text+0x5f663): undefined reference to `led_classdev_unregister'
        drivers/built-in.o: In function `wbcir_remove':
        winbond-cir.c:(.devexit.text+0x7f23): undefined reference to `led_classdev_unregister'
        drivers/built-in.o: In function `fujitsu_cleanup':
        fujitsu-laptop.c:(.exit.text+0xbe37): undefined reference to `led_classdev_unregister'
        fujitsu-laptop.c:(.exit.text+0xbe53): undefined reference to `led_classdev_unregister'
      
      It happens because the new INPUT_WINBOND_CIR driver relies on new-leds
      infrastructure - but does not select it in drivers/input/misc/Kconfig.
      But it selects LEDS_CLASS, which confuses a number of other drivers into
      thinking that all the leds infrastructure is in place.
      
      Fix this by selecting NEW_LEDS as well, like similar drivers do.
      
      Eventually, this whole leds infrastructure complexity should be
      cleaned up, it's been going on for years.
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
      Cc: Dmitry Torokhov <dtor@mail.ru>
      Cc: David Härdeman <david@hardeman.nu>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      d2b5ec3a
  31. 22 9月, 2009 1 次提交
  32. 17 9月, 2009 2 次提交
  33. 23 7月, 2009 1 次提交
  34. 13 6月, 2009 1 次提交
  35. 24 4月, 2009 1 次提交
    • D
      Input: add dm355evm_keys driver · eb990b55
      David Brownell 提交于
      Simple input driver support for the events reported by the
      MSP430 firmware on the DM355 EVM.  Verified using the RC5
      remote included with the kit; docs weren't quite right.
      
      Some of the keycode selections might need improvement; they
      can be remapped, so there's at least a runtime workaround.
      (I also suspect Linux may someday merit more generic support
      for RC5 based remote controls.)
      
      These events don't distinguish key press vs release events,
      so this reports both and then skips the next event if it's
      identical.  The RC5 remote codes include a "toggle" bit that
      can help detect autorepeated keys; but this driver doesn't
      bother with those nuances.
      
      This driver relies on the drivers/mfd/dm355evm_msp.c code
      for core features, including sharing I2C access to this
      firmware with GPIO, LED, and RTC support.
      
      [dtor@mail.ru: fix error unwindng path in probe()]
      Signed-off-by: NDavid Brownell <dbrownell@users.sourceforge.net>
      Signed-off-by: NKevin Hilman <khilman@deeprootsystems.com>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      eb990b55
  36. 20 4月, 2009 1 次提交