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
        blocks and try to put the new include such that its order conforms
        to its surrounding.  It's put in the include block which contains
        core kernel includes, in the same order that the rest are ordered -
        alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
        doesn't seem to be any matching order.
      
      * If the script can't find a place to put a new include (mostly
        because the file doesn't have fitting include block), it prints out
        an error message indicating which .h file needs to be added to the
        file.
      
      The conversion was done in the following steps.
      
      1. The initial automatic conversion of all .c files updated slightly
         over 4000 files, deleting around 700 includes and adding ~480 gfp.h
         and ~3000 slab.h inclusions.  The script emitted errors for ~400
         files.
      
      2. Each error was manually checked.  Some didn't need the inclusion,
         some needed manual addition while adding it to implementation .h or
         embedding .c file was more appropriate for others.  This step added
         inclusions to around 150 files.
      
      3. The script was run again and the output was compared to the edits
         from #2 to make sure no file was left behind.
      
      4. Several build tests were done and a couple of problems were fixed.
         e.g. lib/decompress_*.c used malloc/free() wrappers around slab
         APIs requiring slab.h to be added manually.
      
      5. The script was run on all .h files but without automatically
         editing them as sprinkling gfp.h and slab.h inclusions around .h
         files could easily lead to inclusion dependency hell.  Most gfp.h
         inclusion directives were ignored as stuff from gfp.h was usually
         wildly available and often used in preprocessor macros.  Each
         slab.h inclusion directive was examined and added manually as
         necessary.
      
      6. percpu.h was updated not to include slab.h.
      
      7. Build test were done on the following configurations and failures
         were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
         distributed build env didn't work with gcov compiles) and a few
         more options had to be turned off depending on archs to make things
         build (like ipr on powerpc/64 which failed due to missing writeq).
      
         * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
         * powerpc and powerpc64 SMP allmodconfig
         * sparc and sparc64 SMP allmodconfig
         * ia64 SMP allmodconfig
         * s390 SMP allmodconfig
         * alpha SMP allmodconfig
         * um on x86_64 SMP allmodconfig
      
      8. percpu.h modifications were reverted so that it could be applied as
         a separate patch and serve as bisection point.
      
      Given the fact that I had only a couple of failures from tests on step
      6, I'm fairly confident about the coverage of this conversion patch.
      If there is a breakage, it's likely to be something in one of the arch
      headers which should be easily discoverable easily on most builds of
      the specific arch.
      Signed-off-by: default avatarTejun Heo <tj@kernel.org>
      Guess-its-ok-by: default avatarChristoph Lameter <cl@linux-foundation.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
      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