1. 23 4月, 2006 9 次提交
  2. 26 3月, 2006 1 次提交
  3. 18 2月, 2006 1 次提交
  4. 02 2月, 2006 6 次提交
  5. 09 1月, 2006 2 次提交
  6. 18 11月, 2005 3 次提交
  7. 14 11月, 2005 3 次提交
  8. 09 11月, 2005 1 次提交
    • O
      [PATCH] changing CONFIG_LOCALVERSION rebuilds too much, for no good reason · 733482e4
      Olaf Hering 提交于
      This patch removes almost all inclusions of linux/version.h.  The 3
      #defines are unused in most of the touched files.
      
      A few drivers use the simple KERNEL_VERSION(a,b,c) macro, which is
      unfortunatly in linux/version.h.
      
      There are also lots of #ifdef for long obsolete kernels, this was not
      touched.  In a few places, the linux/version.h include was move to where
      the LINUX_VERSION_CODE was used.
      
      quilt vi `find * -type f -name "*.[ch]"|xargs grep -El '(UTS_RELEASE|LINUX_VERSION_CODE|KERNEL_VERSION|linux/version.h)'|grep -Ev '(/(boot|coda|drm)/|~$)'`
      
      search pattern:
      /UTS_RELEASE\|LINUX_VERSION_CODE\|KERNEL_VERSION\|linux\/\(utsname\|version\).h
      Signed-off-by: NOlaf Hering <olh@suse.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      733482e4
  9. 07 11月, 2005 1 次提交
    • K
      [PATCH] tpm: Fix lack of driver_unregister in init failcases · e2a8f7a1
      Kylene Jo Hall 提交于
      driver_unregister is not being properly called when the init function
      returns an error case.  Restructured the return logic such that this and
      the other cleanups all happen in one place.  Preformed many of the cleanups
      that Andrew Morton's patch on Thursday made in tpm_atmel.c.  Fixed
      Matthieu's concern about writing before discovery.
      
      (akpm: rmk said:
      
      This driver is buggy.  You must not provide your own release function - it
      doesn't solve the problem which the warning (which you get when you don't
      provide one) is telling you about.
      
      You should convert your device driver over to the replacement dynamic platform
      support, once it is merged.  IOW, something like:
      
      	pdev = platform_device_alloc("mydev", id);
      	if (pdev) {
      		err = platform_device_add_resources(pdev, &resources,
      						ARRAY_SIZE(resources));
      		if (err == 0)
      			err = platform_device_add_data(pdev, &platform_data,
      						sizeof(platform_data));
      		if (err == 0)
      			err = platform_device_add(pdev);
      		} else {
      			err = -ENOMEM;
      		}
      		if (err)
      			platform_device_put(pdev);
      )
      Signed-off-by: NKylene Jo Hall <kjhall@us.ibm.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      e2a8f7a1
  10. 02 11月, 2005 2 次提交
  11. 31 10月, 2005 8 次提交
  12. 08 9月, 2005 1 次提交
  13. 05 9月, 2005 1 次提交
  14. 25 8月, 2005 1 次提交