lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 15 Oct 2008 00:39:59 +0200 (CEST)
From:	Jiri Kosina <jkosina@...e.cz>
To:	Linus Torvalds <torvalds@...ux-foundation.org>
cc:	linux-kernel@...r.kernel.org, Jiri Slaby <jirislaby@...il.com>
Subject: [GIT] HID patches for 2.6.28


[ this is v2 of the request, with these changes compared to the previous one:

- the compilation warning about unused _compat functions is gone
- all the quirk-drivers are now built automatically once generic driver is
  selected (can be overridden for EMBEDDED kernels)
- three new patches from Mauro adding a few VID/PID ]


Linus,

could you please pull from 'for-linus' branch of

        git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git for-linus

to receive 2.6.28 patches for the HID code.

The most notable change is a conversion of the whole HID core code into
bus, and conversion of all the quirks to specialized separate drivers.
Over past years, the quirks have been added in order to support broken
devices (not complying with HID standard) all over the code, and turned it
into total unmaintainable mess. The HID bus provides easy means for
drivers for quirky devices to use as much of the common code as possible,
and allows for re-implementing only the quirky part.

Thanks!

 Documentation/feature-removal-schedule.txt  |    7 +
 drivers/hid/Kconfig                         |  221 +++++
 drivers/hid/Makefile                        |   35 +-
 drivers/hid/hid-a4tech.c                    |  162 ++++
 drivers/hid/hid-apple.c                     |  484 +++++++++++
 drivers/hid/hid-belkin.c                    |  105 +++
 drivers/hid/hid-bright.c                    |   71 ++
 drivers/hid/hid-cherry.c                    |   87 ++
 drivers/hid/hid-chicony.c                   |   80 ++
 drivers/hid/hid-core.c                      | 1181 +++++++++++++++++++++------
 drivers/hid/hid-cypress.c                   |  158 ++++
 drivers/hid/hid-dell.c                      |   75 ++
 drivers/hid/hid-dummy.c                     |   72 ++
 drivers/hid/hid-ezkey.c                     |   95 +++
 drivers/hid/hid-gyration.c                  |   96 +++
 drivers/hid/hid-ids.h                       |  404 +++++++++
 drivers/hid/hid-input-quirks.c              |  484 -----------
 drivers/hid/hid-input.c                     |  915 ++++++++--------------
 drivers/hid/hid-lg.c                        |  342 ++++++++
 drivers/hid/hid-lg.h                        |   18 +
 drivers/hid/{usbhid => }/hid-lg2ff.c        |   14 +-
 drivers/hid/{usbhid => }/hid-lgff.c         |   34 +-
 drivers/hid/hid-microsoft.c                 |  219 +++++
 drivers/hid/hid-monterey.c                  |   82 ++
 drivers/hid/hid-petalynx.c                  |  122 +++
 drivers/hid/{usbhid/hid-plff.c => hid-pl.c} |   83 ++-
 drivers/hid/hid-samsung.c                   |  100 +++
 drivers/hid/hid-sony.c                      |  110 +++
 drivers/hid/hid-sunplus.c                   |   82 ++
 drivers/hid/{usbhid => }/hid-tmff.c         |  138 ++--
 drivers/hid/{usbhid => }/hid-zpff.c         |   71 ++-
 drivers/hid/hidraw.c                        |    8 +-
 drivers/hid/usbhid/Kconfig                  |   75 --
 drivers/hid/usbhid/Makefile                 |   18 -
 drivers/hid/usbhid/hid-core.c               |  463 ++++++------
 drivers/hid/usbhid/hid-ff.c                 |   95 ---
 drivers/hid/usbhid/hid-pidff.c              |    5 +-
 drivers/hid/usbhid/hid-quirks.c             |  934 +---------------------
 drivers/hid/usbhid/hiddev.c                 |   20 +-
 drivers/hid/usbhid/usbhid.h                 |    4 +-
 drivers/hid/usbhid/usbkbd.c                 |   12 +-
 drivers/hid/usbhid/usbmouse.c               |    8 +-
 include/linux/hid.h                         |  373 +++++++--
 include/linux/hiddev.h                      |   46 +-
 include/linux/mod_devicetable.h             |   10 +
 net/bluetooth/hidp/core.c                   |  214 +++--
 net/bluetooth/hidp/hidp.h                   |    2 +
 scripts/mod/file2alias.c                    |   18 +
 48 files changed, 5503 insertions(+), 2949 deletions(-)

Alex Chiang (1):
      HID: fix grammo in HID_COMPAT Kconfig help text

Anssi Hannula (1):
      HID: fix a lockup regression when using force feedback on a PID device

Antonio Ospite (2):
      HID: hiddev.h: Fix mixed space and tabs in example code.
      HID: hiddev.h: Fix example code.

Greg Kroah-Hartman (2):
      HID: remove info() macro from usb HID drivers
      HID: remove warn() macro from usb hid drivers

Jiri Kosina (5):
      HID: introduce list for hiddev creation forcing
      HID: add support for Super Dual Box Pro USB PS2/PS2 adapter
      HID: fix incorrent length condition in hidraw_write()
      HID: add missing blacklist entry for Apple ATV ircontrol
      HID: build drivers for all quirky devices by default

Jiri Slaby (35):
      modpost: add support for hid
      HID: make a bus from hid code
      HID: hid, make parsing event driven
      HID: move ids into separate file
      HID: move usage input mapping to hid.h
      HID: move logitech quirks
      HID: move ignore quirks
      HID: move apple quirks
      HID: add compat support
      HID: indent switches/cases
      HID: move microsoft quirks
      HID: move sunplus quirks
      HID: move cypress quirks
      HID: move a4tech quirks
      HID: move cherry quirks
      HID: move ezkey quirks
      HID: move chicony quirks
      HID: move belkin quirks
      HID: move petalynx quirks
      HID: move monterey quirks
      HID: move gyration quirks
      HID: move samsung quirks
      HID: remove hid-input-quirks
      HID: remove rdesc quirk support
      HID: move sony quirks
      HID: move dell quirks
      HID: move connect quirks
      HID: move reset leds quirk
      HID: move logitech FF processing
      HID: fix tty<->hid deadlock
      HID: move pantherlord FF processing
      HID: move thrustmaster FF processing
      HID: move zeroplus FF processing
      HID: remove hid-ff
      HID: convert to dev_* prints

Mauro Carvalho Chehab (3):
      HID: fix numlock led on Dell device 0x413c/0x2105
      HID: Don't let Avermedia Radio FM800 be handled by usb hid drivers
      HID: add support for Bright ABNT2 brazilian device

Peter Korsgaard (1):
      HID: add appletv IR receiver quirk

Randy Dunlap (1):
      HID: fix gyration build error

Remi Cattiau (1):
      HID: ignore iBuddy devices

Richard Hughes (1):
      HID: remove ignore quirk for MGE UPS devices

Sergey Belyashov (1):
      HID: Autocentering support for Logitech MOMO Racing Wheel

Tomoya Adachi (1):
      HID: report descriptor fix for remaining MacBook JIS keyboards

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ