1. 09 Jun, 2014 4 commits
  2. 26 Oct, 2013 1 commit
  3. 10 Apr, 2013 3 commits
  4. 20 Feb, 2013 1 commit
  5. 06 Dec, 2012 1 commit
  6. 19 Sep, 2012 2 commits
  7. 12 Mar, 2012 1 commit
  8. 31 Oct, 2011 1 commit
  9. 20 Oct, 2011 1 commit
  10. 25 Aug, 2011 1 commit
  11. 23 Aug, 2011 1 commit
    • Jeremiah Matthey's avatar
      HID: usbhid: Add support for SiGma Micro chip · f5e42825
      Jeremiah Matthey authored
      
      Patch to add SiGma Micro-based keyboards (1c4f:0002) to hid-quirks.
      
      These keyboards dont seem to allow the records to be initialized, and hence a
      timeout occurs when the usbhid driver attempts to initialize them. The patch
      just adds the signature for these keyboards to the hid-quirks list with the
      setting HID_QUIRK_NO_INIT_REPORTS. This removes the 5-10 second wait for the
      timeout to occur.
      Signed-off-by: default avatarJeremiah Matthey <sprg86@gmail.com>
      Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
      f5e42825
  12. 15 Aug, 2011 1 commit
  13. 24 May, 2011 1 commit
  14. 26 Apr, 2011 1 commit
  15. 06 Apr, 2011 1 commit
  16. 11 Jan, 2011 1 commit
  17. 25 Nov, 2010 1 commit
  18. 12 Oct, 2010 1 commit
  19. 01 Oct, 2010 2 commits
    • Philipp Merkel's avatar
      HID: Fix for problems with eGalax/DWAV multi-touch-screen · f5166110
      Philipp Merkel authored
      
      This patch fixes three problems with the eGalax/DWAV multi-touch
      screen found in the Eee PC T101MT:
      
      1) While there is a dedicated multitouch driver for the screen
         (hid-egalax.c), the MULTI_INPUT quirk is also applied, preventing
         the hid-egalax driver from working. This patch removes the quirk
         so the hid-egalax driver can handle the device correctly.
      2) The x and y coordinates sent by the screen in multi-touch mode are
         shifted by three bits from the events sent in single-touch mode, thus
         the coordinates are out of range, leading to the pointer being stuck
         in the bottom-right corner if no additional calibration is applied
         (e.g. in the X evdev driver). This patch shifts the coordinates back.
         This does not decrease accuracy as the last three bits of the "wrong"
         coordinates are always 0.
      3) Only multi-touch pressure events are sent, single touch emulation is
         missing pressure information. This patch adds single-touch
         ABS_PRESSURE events.
      Signed-off-by: default avatarPhilipp Merkel <mail@philmerk.de>
      Acked-by: default avatarStéphane Chatty <chatty@enac.fr>
      Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
      f5166110
    • Rok Mandeljc's avatar
      HID: add NOGET quirk for AXIS 295 Video Surveillance Joystick · 8038298f
      Rok Mandeljc authored
      
      This patch adds the NOGET quirk for AXIS 295 Video Surveillance Joystick
      (despite AXIS brand the vendor is actually CH Products). Without the quirk, the
      joystick is detected but does not generate any events.
      Signed-off-by: default avatarRok Mandeljc <rok.mandeljc@gmail.com>
      Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
      8038298f
  20. 03 Sep, 2010 1 commit
  21. 01 Sep, 2010 1 commit
  22. 30 Aug, 2010 1 commit
  23. 24 Aug, 2010 1 commit
  24. 23 Aug, 2010 1 commit
    • Nikolai Kondrashov's avatar
      HID: add support for two Waltop tablets · 72a46344
      Nikolai Kondrashov authored
      
      Add support for Waltop Slim Tablet 5.8 inch and Media Tablet 10.6 inch.
      
      These (and other Waltop) tablets are usually sold by different companies
      (such as Genius and Trust) and with different names, but with the same USB
      vendor/product IDs.
      
      Slim Tablet 5.8 inch is known to also be sold as Genius G-Pen F350 and Trust
      Widescreen Mini Tablet (item no 16485).
      
      Media Tablet 10.6 inch is known to also be sold as Genius G-Pen M609 and
      M609X. Of these only the latter is known to be supported.
      Signed-off-by: default avatarNikolai Kondrashov <spbnick@gmail.com>
      Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
      72a46344
  25. 19 Aug, 2010 1 commit
  26. 09 Aug, 2010 1 commit
    • Nikolai Kondrashov's avatar
      HID: Add support for UC-Logic WP????U tablets · f8a489cc
      Nikolai Kondrashov authored
      
      Add support for UC-Logic WP4030U, WP5540U and WP8060U tablets.
      These tablets are usually sold by Genius, Trust and possibly others under
      different names and in different cases, but with the original USB
      vendor/product IDs.
      
      Currently, these tablets are supported by standalone X.org driver WizardPen.
      This patch aims to fix them in the kernel and make them supported by the
      generic evdev X.org driver. Still, some minor fixes in the X.org driver are
      to be made for the full stack support.
      Signed-off-by: default avatarNikolai Kondrashov <spbnick@gmail.com>
      Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
      f8a489cc
  27. 19 Jul, 2010 1 commit
  28. 11 Jul, 2010 2 commits
  29. 10 May, 2010 1 commit
  30. 30 Mar, 2010 1 commit
    • Tejun Heo's avatar
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking... · 5a0e3ad6
      Tejun Heo authored
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
      
      percpu.h is included by sched.h and module.h and thus ends up being
      included when building most .c files.  percpu.h includes slab.h which
      in turn includes gfp.h making everything defined by the two files
      universally available and complicating inclusion dependencies.
      
      percpu.h -> slab.h dependency is about to be removed.  Prepare for
      this change by updating users of gfp and slab facilities include those
      headers directly instead of assuming availability.  As this conversion
      needs to touch large number of source files, the following script is
      used as the basis of conversion.
      
        http://userweb.kernel.org/~tj/misc/slabh-sweep.py
      
      The script does the followings.
      
      * Scan files for gfp and slab usages and update includes such that
        only the necessary includes are there.  ie. if only gfp is used,
        gfp.h, if slab is used, slab.h.
      
      * When the script inserts a new include, it looks at the include
        bloc...
      5a0e3ad6
  31. 29 Mar, 2010 1 commit
    • Anisse Astier's avatar
      HID: Add NOGET quirk for Quanta Pixart touchscreen · c565c54d
      Anisse Astier authored
      
      Add the NOGET quirk for the Quanta optical touchscreen present on MSI AE2220,
      Otherwise, the hid-quanta driver timeouts at load time:
      
      drivers/hid/usbhid/hid-core.c: usb_submit_urb(ctrl) failed
      quanta-touch 0003:0408:3001.0003: timeout initializing reports
      input: PixArt Imaging Inc. Optical Touch Screen as /class/input/input7
      quanta-touch 0003:0408:3001.0003: input: USB HID v1.10 Device [PixArt Imaging Inc. Optical Touch Screen] on usb-0000:00:06.0-2/input0
      Signed-off-by: default avatarAnisse Astier <anisse@astier.eu>
      Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
      c565c54d
  32. 09 Mar, 2010 1 commit