1. 05 3月, 2012 1 次提交
  2. 27 2月, 2012 1 次提交
  3. 24 2月, 2012 1 次提交
    • O
      ARM: OMAP2: fix mailbox init code · 655850ed
      Ohad Ben-Cohen 提交于
      Fix this:
      
      arch/arm/mach-omap2/mailbox.c: In function 'omap2_mbox_probe':
      arch/arm/mach-omap2/mailbox.c:354: error: 'omap2_mboxes' undeclared (first use in this function)
      arch/arm/mach-omap2/mailbox.c:354: error: (Each undeclared identifier is reported only once
      arch/arm/mach-omap2/mailbox.c:354: error: for each function it appears in.)
      
      Which happens on CONFIG_ARCH_OMAP2 && !CONFIG_SOC_OMAP2420, due to
      missing omap2_mboxes declaration.
      
      In addition, make sure we declare the right mailbox instances for 2430.
      Reported-by: NRussell King <linux@arm.linux.org.uk>
      Signed-off-by: NOhad Ben-Cohen <ohad@wizery.com>
      Cc: Hiroshi Doyu <hdoyu@nvidia.com>
      Cc: Omar Ramirez Luna <omar.ramirez@ti.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      655850ed
  4. 08 11月, 2011 1 次提交
    • T
      ARM: OMAP: Fix export.h or module.h includes · a1bcc1dc
      Tony Lindgren 提交于
      Commit 32aaeffb (Merge branch
      'modsplit-Oct31_2011'...) caused some build errors. Fix these
      and make sure we always have export.h or module.h included
      for MODULE_ and EXPORT_SYMBOL users:
      
      $ grep -rl ^MODULE_ arch/arm/*omap*/*.c | xargs \
        grep -L linux/module.h
        arch/arm/mach-omap2/dsp.c
        arch/arm/mach-omap2/mailbox.c
        arch/arm/mach-omap2/omap-iommu.c
        arch/arm/mach-omap2/smartreflex.c
      
      Also check we either have export.h or module.h included
      for the files exporting symbols:
      
      $ grep -rl EXPORT_SYMBOL arch/arm/*omap*/*.c | xargs \
        grep -L linux/export.h | xargs grep -L linux/module.h
      
      Cc: Russell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      a1bcc1dc
  5. 04 3月, 2011 1 次提交
  6. 25 2月, 2011 2 次提交
  7. 15 2月, 2011 1 次提交
  8. 28 1月, 2011 1 次提交
  9. 02 12月, 2010 2 次提交
  10. 29 9月, 2010 1 次提交
  11. 04 8月, 2010 10 次提交
  12. 12 3月, 2010 1 次提交
  13. 24 2月, 2010 2 次提交
  14. 16 2月, 2010 1 次提交
  15. 23 11月, 2009 1 次提交
  16. 11 11月, 2009 1 次提交
  17. 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
  18. 29 9月, 2009 1 次提交
  19. 25 9月, 2009 2 次提交
  20. 23 6月, 2009 1 次提交
  21. 24 3月, 2009 5 次提交
  22. 06 9月, 2008 1 次提交
  23. 07 8月, 2008 1 次提交