An error occurred fetching the project authors.
  1. 01 Oct, 2010 1 commit
    • kishore kadiyala's avatar
      omap4 hsmmc: Register offset handling · 91a0b089
      kishore kadiyala authored
      In OMAP4, as per new PM programming model, the legacy registers
      which were there in OMAP3 are all shifted by 0x100 while new one's
      are added from offset 0 to 0x10.
      For OMAP4, the register offset appending of 0x100 done in devices.c
      currently, is moved to driver file.This change fits in for current
      implementation as well as once the driver undergoes hwmod adaptation.
      
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Madhusudhan Chikkature <madhu.cr@ti.com>
      Cc: Adrian Hunter <adrian.hunter@nokia.com>
      Cc: Benoit Cousson <b-cousson@ti.com>
      Signed-off-by: default avatarKishore Kadiyala <kishore.kadiyala@ti.com>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      91a0b089
  2. 29 Sep, 2010 1 commit
  3. 27 Sep, 2010 2 commits
  4. 04 Aug, 2010 2 commits
  5. 05 Jul, 2010 2 commits
  6. 20 May, 2010 1 commit
  7. 14 May, 2010 1 commit
  8. 10 May, 2010 1 commit
  9. 03 May, 2010 1 commit
  10. 29 Apr, 2010 1 commit
  11. 23 Apr, 2010 1 commit
  12. 23 Feb, 2010 1 commit
  13. 15 Feb, 2010 2 commits
  14. 12 Dec, 2009 1 commit
  15. 22 Nov, 2009 3 commits
  16. 20 Oct, 2009 1 commit
    • Tony Lindgren's avatar
      omap: headers: Move remaining headers from include/mach to include/plat · ce491cf8
      Tony Lindgren authored
      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: default avatarTony Lindgren <tony@atomide.com>
      ce491cf8
  17. 24 Sep, 2009 1 commit
  18. 23 Sep, 2009 2 commits
  19. 28 Aug, 2009 1 commit
  20. 12 May, 2009 1 commit
  21. 23 Apr, 2009 1 commit
  22. 24 Mar, 2009 3 commits
  23. 08 Feb, 2009 2 commits
  24. 29 Jan, 2009 1 commit
  25. 11 Dec, 2008 3 commits
  26. 06 Oct, 2008 1 commit
    • Tony Lindgren's avatar
      ARM: OMAP2: Misc updates from linux-omap tree · 646e3ed1
      Tony Lindgren authored
      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: default avatarTony Lindgren <tony@atomide.com>
      646e3ed1
  27. 06 Sep, 2008 1 commit
  28. 07 Aug, 2008 1 commit