1. 19 5月, 2010 2 次提交
  2. 18 5月, 2010 1 次提交
  3. 30 3月, 2010 1 次提交
  4. 22 3月, 2010 2 次提交
    • J
      HID: fixup Kconfig entry for Roccat Kone · 23d386d8
      Jiri Kosina 提交于
      Make it independent on CONFIG_EMBEDDED (to be in sync with other
      "full-fledged" HID drivers which are not simple quirks) and provide
      a little bit better text description.
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      23d386d8
    • S
      HID: add driver for Roccat Kone gaming mouse · 14bf62cd
      Stefan Achatz 提交于
      This Patch adds support for Kone gaming mouse from Roccat.
      It provides access to profiles, settings, firmware, weight,
      actual settings etc. through sysfs attributes.
      Event handling of this mouse differs from standard hid behaviour
      in that tilt button press is reported in each move event which
      results in strange behaviour if not handled by the driver.
      
      This is a heavily reworked version of the previously introduced driver.
      The changes include most of the previously raised concerns,
      memory leak and other fixes, code cleanups, adoption of additional
      achieved knowlege about the hardware and is (IMHO) a much better version
      than before even when I exchanged reduced USB-IO with a bigger memory
      consumption.
      
      I refused to implement one mentioned point:
      Removing the 'just-because-we-can' attributes. Motivation:
      Reading the clipped in weight: I'm no gamer and can't determine the
      usefulness of this feature but if the manufacturer implements such a
      feature it might make sense to someone and I would unwillingly limit the
      functionality besides its such a small feature.
      Reading the actual profile and dpi settings: Here I can testify that one
      can get lost of the actual settings when switching back and forth.
      The manufacturers windows driver has the ability for on-screen-display
      of the values and there is a mouse in the market that has an lcd on the
      underside of it to show these values. So I think this feature makes sense
      not only for me and shouldn't be removed.
      Signed-off-by: NStefan Achatz <erazor_de@users.sourceforge.net>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      14bf62cd
  5. 18 3月, 2010 7 次提交
  6. 17 3月, 2010 26 次提交
  7. 16 3月, 2010 1 次提交
    • B
      HID: avoid '\0' in hid debugfs events file · e639ba48
      Bruno Prémont 提交于
      When dumping /sys/kernel/debug/hid/$device/events '\0' characters show up
      (invisible if cat to console but shown by less or while looking at a dump
       file).  These are due to hid_debug_event() adding strlen()+1 bytes to the ring
      buffer (e.g. including the trailing '\0').  Any roll-over causes a '\0' as well
      as hid_debug_event() handles the ring buffers with HID_DEBUG_BUFSIZE-1 size
      while hid_debug_events_read() handles it with full HID_DEBUG_BUFSIZE size.
      Signed-off-by: NBruno Prémont <bonbons@linux-vserver.org>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      e639ba48