1. 16 6月, 2011 1 次提交
  2. 23 12月, 2010 1 次提交
  3. 20 10月, 2010 1 次提交
    • N
      arm: remove machine_desc.io_pg_offst and .phys_io · 6451d778
      Nicolas Pitre 提交于
      Since we're now using addruart to establish the debug mapping, we can
      remove the io_pg_offst and phys_io members of struct machine_desc.
      
      The various declarations were removed using the following script:
      
        grep -rl MACHINE_START arch/arm | xargs \
        sed -i '/MACHINE_START/,/MACHINE_END/ { /\.\(phys_io\|io_pg_offst\)/d }'
      
      [ Initial patch was from Jeremy Kerr, example script from Russell King ]
      Signed-off-by: NNicolas Pitre <nicolas.pitre@linaro.org>
      Acked-by: Eric Miao <eric.miao at canonical.com>
      6451d778
  4. 16 7月, 2010 1 次提交
  5. 05 7月, 2010 1 次提交
  6. 16 2月, 2010 1 次提交
  7. 23 10月, 2009 1 次提交
  8. 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
  9. 29 8月, 2009 1 次提交
  10. 24 3月, 2009 2 次提交
  11. 15 1月, 2009 1 次提交
    • T
      ARM: OMAP: Remove unused platform devices, v3 · e999bbe7
      Tony Lindgren 提交于
      This patch removes old platform devices. Alsa should now
      be using the ASoC driver. For boards not yet using ASoC,
      please see sound/soc/omap/osk5912.c.
      
      Add dummy aic23_power_up and aic23_power_down functions for 770
      to keep things compiling.
      
      Remove references to omap_gpio_switch, and unused h2_nand_dev_ready
      function.
      
      This patch is based on an earlier patch by Arun KS.
      
      Cc: Jarkko Nikula <jarkko.nikula@nokia.com>
      Signed-off-by: NArun KS <arunks@mistralsolutions.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      
      
      
      
      
      
      e999bbe7
  12. 11 12月, 2008 1 次提交
  13. 07 8月, 2008 2 次提交
  14. 09 2月, 2008 3 次提交
  15. 26 1月, 2008 1 次提交
  16. 21 9月, 2007 2 次提交