1. 29 3月, 2012 1 次提交
  2. 03 3月, 2012 1 次提交
  3. 08 12月, 2011 1 次提交
  4. 14 9月, 2011 1 次提交
  5. 16 7月, 2011 1 次提交
    • S
      ARM: SAMSUNG: DMA Cleanup as per sparse · d670ac01
      Sangwook Lee 提交于
      Function declaration differs between file: dma.c and file:dma.h
      and SPARSE (Documentation/sparse.txt) gives error messages
      
      All dma channels are members of 'enum dma_ch' and not 'unsigned int'
      Please have a look at channel definitions in:
      arch/arm/mach-s3c64xx/include/mach/dma.h
      arch/arm/plat-samsung/include/plat/s3c-dma-pl330.h
      arch/arm/mach-s3c2410/include/mach/dma.h
      So all arguments should be of type 'enum dma_ch'
      Signed-off-by: NSangwook Lee <sangwook.lee@linaro.org>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      d670ac01
  6. 08 7月, 2011 2 次提交
  7. 04 6月, 2011 1 次提交
  8. 25 4月, 2011 1 次提交
  9. 31 3月, 2011 1 次提交
  10. 17 5月, 2010 1 次提交
  11. 22 2月, 2010 1 次提交
  12. 09 12月, 2009 1 次提交
  13. 01 12月, 2009 2 次提交
  14. 29 10月, 2009 1 次提交
  15. 15 5月, 2009 1 次提交
  16. 01 5月, 2009 4 次提交
  17. 19 12月, 2008 1 次提交
  18. 30 11月, 2008 1 次提交
    • R
      [ARM] Hide ISA DMA API when ISA_DMA_API is unset · dcea83ad
      Russell King 提交于
      When ISA_DMA_API is unset, we're not implementing the ISA DMA API,
      so there's no point in publishing the prototypes via asm/dma.h, nor
      including the machine dependent parts of that API.
      
      This allows us to remove a lot of mach/dma.h files which don't contain
      any useful code.  Unfortunately though, some platforms put their own
      private non-ISA definitions into mach/dma.h, so we leave these behind
      and fix the appropriate #include statments.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      dcea83ad
  19. 08 10月, 2008 1 次提交
  20. 06 9月, 2008 1 次提交
  21. 07 8月, 2008 2 次提交
  22. 27 7月, 2008 1 次提交
  23. 06 3月, 2008 1 次提交
  24. 28 1月, 2008 4 次提交
  25. 25 1月, 2008 1 次提交
  26. 17 10月, 2007 1 次提交
  27. 13 10月, 2007 1 次提交
  28. 20 7月, 2007 1 次提交
    • P
      mm: Remove slab destructors from kmem_cache_create(). · 20c2df83
      Paul Mundt 提交于
      Slab destructors were no longer supported after Christoph's
      c59def9f change. They've been
      BUGs for both slab and slub, and slob never supported them
      either.
      
      This rips out support for the dtor pointer from kmem_cache_create()
      completely and fixes up every single callsite in the kernel (there were
      about 224, not including the slab allocator definitions themselves,
      or the documentation references).
      Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
      20c2df83
  29. 21 5月, 2007 1 次提交
  30. 22 4月, 2007 1 次提交
    • B
      [ARM] 4326/1: S3C24XX: fix sparse errors in DMA code · a7717435
      Ben Dooks 提交于
      Fix the following sparse errors in arch/arm/plat-s3c24xx/dma.c:
      
      dma.c:47:30: warning: symbol 'dma_sel' was not declared. Should it be static?
      dma.c:883:6: warning: symbol 's3c2410_dma_waitforstop' was not declared. Should it be static?
      dma.c:961:1: warning: symbol 's3c2410_dma_started' was not declared. Should it be static?
      dma.c:1283:12: warning: symbol 's3c24xx_dma_sysclass_init' was not declared. Should it be static?
      dma.c:1295:12: warning: symbol 's3c24xx_dma_sysdev_register' was not declared. Should it be static?
      dma.c:1399:25: warning: symbol 's3c2410_dma_map_channel' was not declared. Should it be static?
      
      The patch makes all the relevant functions static.
      Signed-off-by: NBen Dooks <ben-linux@fluff.org>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      a7717435
  31. 17 2月, 2007 1 次提交