1. 15 5月, 2009 1 次提交
    • J
      HID: fix hid-ff drivers so that devices work even without ff support · 0f6f4319
      Jiri Kosina 提交于
      Currently, the hid-*ff force feedback drivers, which claim the blacklisted
      device on a HID bus, are only compiled in if the user selects force feedback
      support.
      
      However we want the device to be supported even when the kernel is configured
      without force feedback.
      
      This patch fixes the drivers in a way that they get compiled even if force
      feedback is turned off; all the force feedback support code is compiled out in
      such case, and the driver works as a usual driver on HID bus, claiming and
      initializing the device, making it operational without FF effects.
      Reported-by: NJussi Kivilinna <jussi.kivilinna@mbnet.fi>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      0f6f4319
  2. 30 3月, 2009 1 次提交
    • J
      HID: remove compat stuff · afa5eb7c
      Jiri Slaby 提交于
      This removal was scheduled and there is no problem with later
      distros to adapt for the new bus, thanks to aliases.
      
      module-init-tools map files are deprecated nowadays, so that
      the patch which introduced hid ones into the m-i-t won't be
      accepted and hence there is no reason for leaving compat stuff in.
      Signed-off-by: NJiri Slaby <jirislaby@gmail.com>
      Cc: Jiri Kosina <jkosina@suse.cz>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      afa5eb7c
  3. 15 10月, 2008 2 次提交
  4. 28 1月, 2008 1 次提交
    • L
      HID: fix a potential bug in pointer casting · 3ba5619f
      Li Zefan 提交于
      Don't directly cast list_head * to foo *, this works only when list
      is the first member of struct foo, and we should not make the assumption
      how members are ordered in the structure.
      
      i.e. struct *f = (struct *f)pos will work if:
      	struct foo {
      		struct list_head list;
      		int i;
      	};
      
      but will fail if:
      	struct foo {
      		int i;
      		struct list_head list;
      	}
      Signed-off-by: NLi Zefan <lizf@cn.fujitsu.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      3ba5619f
  5. 14 10月, 2007 1 次提交
  6. 09 7月, 2007 1 次提交
    • J
      HID: make debugging output runtime-configurable · 58037eb9
      Jiri Kosina 提交于
      There have been many reports recently about broken HID devices, the
      diagnosis of which required users to recompile their kernels in order
      to be able to provide debugging output needed for coding a quirk for
      a particular device.
      
      This patch makes CONFIG_HID_DEBUG default y if !EMBEDDED and makes it
      possible to control debugging output produced by HID code by supplying
      'debug=1' module parameter.
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      58037eb9
  7. 09 5月, 2007 1 次提交
  8. 11 4月, 2007 1 次提交
  9. 09 12月, 2006 2 次提交
  10. 19 7月, 2006 2 次提交
  11. 21 3月, 2006 1 次提交
  12. 29 10月, 2005 1 次提交
  13. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4