1. 25 2月, 2014 3 次提交
  2. 20 2月, 2014 1 次提交
  3. 18 2月, 2014 1 次提交
  4. 17 2月, 2014 8 次提交
  5. 06 2月, 2014 1 次提交
  6. 29 1月, 2014 2 次提交
  7. 21 1月, 2014 2 次提交
  8. 20 1月, 2014 1 次提交
  9. 17 1月, 2014 7 次提交
  10. 02 1月, 2014 1 次提交
  11. 20 11月, 2013 5 次提交
  12. 19 11月, 2013 1 次提交
  13. 11 11月, 2013 1 次提交
    • S
      HID: sony: Add force feedback support for Dualshock3 USB · a08c22c0
      Sven Eckelmann 提交于
      Sony Dualshock 3 controllers have two motors which can be used to provide
      simple force feedback rumble effects. The right motor is can be used to create
      a weak rumble effect but does not allow to set the force. The left motor is
      used to create a strong rumble effect with adjustable intensity.
      
      The state of both motors can be changed using HID_OUTPUT_REPORT packets and
      have no timing information. FF memless is used to keep track of the timing and
      the sony driver just generates the necessary URBs.
      Signed-off-by: NSven Eckelmann <sven@narfation.org>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      a08c22c0
  14. 24 9月, 2013 1 次提交
  15. 13 9月, 2013 1 次提交
  16. 31 7月, 2013 1 次提交
    • B
      HID: trivial devm conversion for special hid drivers · abf832bf
      Benjamin Tissoires 提交于
      It is safe to use devres allocation within the hid subsystem:
      - the devres release is called _after_ the call to .remove(), meaning
        that no freed pointers will exists while removing the device
      - if a .probe() fails, devres releases all the allocated ressources
        before going to the next driver: there will not be ghost ressources
        attached to a hid device if several drivers are probed.
      
      Given that, we can clean up a little some of the HID drivers. These ones
      are trivial:
      - there is only one kzalloc in the driver
      - the .remove() callback contains only one kfree on top of hid_hw_stop()
      - the error path in the probe is easy enough to be manually checked
      Signed-off-by: NBenjamin Tissoires <benjamin.tissoires@redhat.com>
      Reviewed-by: NAndy Shevchenko <andy.shevchenko@gmail.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      abf832bf
  17. 24 7月, 2013 1 次提交
  18. 13 6月, 2013 1 次提交
  19. 28 5月, 2013 1 次提交
    • J
      HID: sony: fix leds dependency · 40e32ee6
      Jiri Kosina 提交于
      The newly added support for Buzz controller
      
      - introduced Kconfig selection of LEDS_CLASS
      - introduced conditional preprocessor checking for CONFIG_LEDS_CLASS
      
      This has multiple problems -- namely select doesn't work transitively,
      so it shouldn't be used. On the other hand the code assumed that LEDS_CLASS
      is enabled in some places, but not everywhere.
      
      Put LEDS_CLASS as a Kconfig dependency for hid-sony and remove all the
      CONFIG_LEDS_CLASS conditionals from hid-sony.
      
      Reported-by: fengguang.wu@intel.com
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      40e32ee6