1. 12 12月, 2009 1 次提交
  2. 04 12月, 2009 1 次提交
  3. 12 11月, 2009 4 次提交
  4. 11 11月, 2009 1 次提交
  5. 23 10月, 2009 1 次提交
  6. 21 10月, 2009 1 次提交
    • T
      omap: headers: Move remaining headers from include/mach to include/plat · ce491cf8
      Tony Lindgren 提交于
      Move the remaining headers under plat-omap/include/mach
      to plat-omap/include/plat. Also search and replace the
      files using these headers to include using the right path.
      
      This was done with:
      
      #!/bin/bash
      mach_dir_old="arch/arm/plat-omap/include/mach"
      plat_dir_new="arch/arm/plat-omap/include/plat"
      headers=$(cd $mach_dir_old && ls *.h)
      omap_dirs="arch/arm/*omap*/ \
      drivers/video/omap \
      sound/soc/omap"
      other_files="drivers/leds/leds-ams-delta.c \
      drivers/mfd/menelaus.c \
      drivers/mfd/twl4030-core.c \
      drivers/mtd/nand/ams-delta.c"
      
      for header in $headers; do
      	old="#include <mach\/$header"
      	new="#include <plat\/$header"
      	for dir in $omap_dirs; do
      		find $dir -type f -name \*.[chS] | \
      			xargs sed -i "s/$old/$new/"
      	done
      	find drivers/ -type f -name \*omap*.[chS] | \
      		xargs sed -i "s/$old/$new/"
      	for file in $other_files; do
      		sed -i "s/$old/$new/" $file
      	done
      done
      
      for header in $(ls $mach_dir_old/*.h); do
      	git mv $header $plat_dir_new/
      done
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      ce491cf8
  7. 20 10月, 2009 1 次提交
  8. 15 10月, 2009 1 次提交
  9. 29 8月, 2009 1 次提交
  10. 25 8月, 2009 1 次提交
  11. 10 8月, 2009 1 次提交
  12. 23 6月, 2009 1 次提交
  13. 29 5月, 2009 3 次提交
  14. 24 4月, 2009 1 次提交
  15. 24 3月, 2009 3 次提交
  16. 30 1月, 2009 2 次提交
  17. 15 1月, 2009 1 次提交
  18. 11 12月, 2008 1 次提交
  19. 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
  20. 06 9月, 2008 2 次提交
  21. 07 8月, 2008 2 次提交
  22. 03 7月, 2008 3 次提交
  23. 06 6月, 2008 1 次提交
  24. 10 5月, 2008 1 次提交
  25. 20 3月, 2008 2 次提交
  26. 06 3月, 2008 1 次提交
  27. 05 3月, 2008 1 次提交