1. 15 10月, 2008 1 次提交
  2. 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
  3. 14 10月, 2007 1 次提交
  4. 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
  5. 09 5月, 2007 1 次提交
  6. 11 4月, 2007 1 次提交
  7. 09 12月, 2006 2 次提交
  8. 19 7月, 2006 2 次提交
  9. 21 3月, 2006 1 次提交
  10. 29 10月, 2005 1 次提交
  11. 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