1. 14 12月, 2011 2 次提交
  2. 17 2月, 2011 1 次提交
  3. 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
  4. 20 10月, 2009 2 次提交
    • T
      omap: headers: Create headers necessary for compile under mach-omap1 and mach-omap2 · 3eff851b
      Tony Lindgren 提交于
      Create the headers needed for compiling under
      mach-omap1/include/mach and mach-omap2/include/mach.
      
      This was done with the following script:
      
      #!/bin/bash
      mach_files="clkdev.h gpio.h hardware.h io.h irqs.h memory.h \
      smp.h system.h timex.h uncompress.h vmalloc.h"
      omaps="mach-omap1 mach-omap2"
      
      mach_dir_old="arch/arm/plat-omap/include/mach"
      plat_dir_new="arch/arm/plat-omap/include/plat"
      
      mkdir -p $plat_dir_new
      git add $plat_dir_new
      
      for dir in $omaps; do
      	mach_dir_new="arch/arm/$dir/include/mach"
      	for header in $mach_files; do
      		file="$mach_dir_new/$header"
      		if [ ! -f $file ]; then
      			echo -ne "/*\n * $file\n */\n\n#include <plat/$header>\n" > $file
      			git add $file
      			if [ ! -f $plat_dir_new/$header ]; then
      				git mv $mach_dir_old/$header $plat_dir_new/$header
      			fi
      		fi
      	done
      done
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      3eff851b
    • T
      omap: headers: Add mach path to include files · 74cda9a5
      Tony Lindgren 提交于
      This is to prepare for moving hardware.h to live under plat
      instead of mach.
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      74cda9a5
  5. 08 10月, 2009 1 次提交
  6. 29 5月, 2009 1 次提交
  7. 24 3月, 2009 11 次提交
  8. 10 10月, 2008 1 次提交
  9. 09 10月, 2008 1 次提交
  10. 06 10月, 2008 1 次提交
    • T
      ARM: OMAP2: Misc updates from linux-omap tree · 646e3ed1
      Tony Lindgren 提交于
      Misc updates from linux-omap tree, mostly to update common
      device initialization and add missing defines from linux-omap
      tree. Also some changes to make room for adding 34xx in
      following patches.
      
      Note that the I2C resources are now set up in
      arch/arm/plat-omap/i2c.c helper, and can be removed
      from devices.c.
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      646e3ed1
  11. 06 9月, 2008 1 次提交
  12. 07 8月, 2008 1 次提交
  13. 03 7月, 2008 1 次提交
  14. 23 5月, 2008 1 次提交
    • R
      [ARM] fix OMAP include loops · cfb41bf7
      Russell King 提交于
      OMAP has two include loops in its header files:
      
        asm-arm/hardware.h <- asm-arm/arch-omap/io.h <-
         asm-arm/arch-omap/hardware.h <- asm-arm/hardware.h
      
        asm-arm/arch-omap/board-palmte.h <-
         asm-arm/arch-omap/hardware.h <- asm-arm/hardware.h <-
         asm-arm/arch-omap/gpio.h <- asm-arm/arch-omap/board-palmte.h
      
      Circular include dependencies are dangerous since they can result in
      inconsistent definitions being provided to other code, especially if
      '#ifndef' constructs are used.
      
      Solve these by removing the offending includes, and add additional
      includes where necessary.
      Acked-by: NTony Lindgren <tony@atomide.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      cfb41bf7
  15. 21 9月, 2007 5 次提交
  16. 09 5月, 2007 1 次提交
  17. 27 6月, 2006 1 次提交
  18. 26 4月, 2006 1 次提交
  19. 03 4月, 2006 1 次提交
  20. 10 11月, 2005 1 次提交
  21. 08 9月, 2005 1 次提交
  22. 11 7月, 2005 1 次提交
  23. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4