1. 04 10月, 2011 9 次提交
  2. 21 9月, 2011 1 次提交
    • K
      ARM: SAMSUNG: Update the name of regarding Samsung GPIO · 782d8a3c
      Kukjin Kim 提交于
      According to gpio-samsung.c, this patch updates the name of
      regarding Samsung GPIO. Basically the samsung_xxx prefix is
      used in gpio-samsung.c instead of s3c_xxx, because unified
      name can reduce its complexity.
      
      Note: some s3c_xxx stil remains because it is used widely.
      It will be updated next time.
      
      Cc: Ben Dooks <ben-linux@fluff.org>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      782d8a3c
  3. 16 9月, 2011 4 次提交
  4. 15 9月, 2011 2 次提交
  5. 14 9月, 2011 5 次提交
  6. 05 9月, 2011 2 次提交
  7. 24 8月, 2011 2 次提交
  8. 22 8月, 2011 1 次提交
  9. 19 8月, 2011 1 次提交
    • K
      ARM: SAMSUNG: Fix Section mismatch in samsung_bl_set() · b8a297d3
      Kukjin Kim 提交于
      WARNING: vmlinux.o(.text+0xf47c): Section mismatch in reference from the function samsung_bl_set() to the (unknown reference) .init.data:(unknown)
      The function samsung_bl_set() references
      the (unknown reference) __initdata (unknown).
      This is often because samsung_bl_set lacks a __initdata
      annotation or the annotation of (unknown) is wrong.
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      b8a297d3
  10. 21 7月, 2011 6 次提交
  11. 20 7月, 2011 2 次提交
  12. 18 7月, 2011 1 次提交
  13. 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
  14. 06 7月, 2011 2 次提交
  15. 02 7月, 2011 1 次提交
    • R
      ARM: pm: allow suspend finisher to return error codes · 29cb3cd2
      Russell King 提交于
      There are SoCs where attempting to enter a low power state is ignored,
      and the CPU continues executing instructions with all state preserved.
      It is over-complex at that point to disable the MMU just to call the
      resume path.
      
      Instead, allow the suspend finisher to return error codes to abort
      suspend in this circumstance, where the cpu_suspend internals will then
      unwind the saved state on the stack.  Also omit the tlb flush as no
      changes to the page tables will have happened.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      29cb3cd2