1. 24 4月, 2010 1 次提交
  2. 24 2月, 2010 1 次提交
    • M
      omap: musb: Add USB support to 4430 SDP board file · bce06683
      Maulik Mankad 提交于
      This patch adds support for Mentor USB to 4430 SDP board
      file.
      
      It also defines the base address for HS USB OTG controller
      in OMAP4.
      
      Also updates platform specfic structure with base address
      and IRQ details.
      Signed-off-by: NMaulik Mankad <x0082077@ti.com>
      Cc: Tony Lindgren <tony@atomide.com>
      Cc: Felipe Balbi <felipe.balbi@nokia.com>
      Cc: David Brownell <david-b@pacbell.net>
      Cc: Greg Kroah-Hartman <gregkh@suse.de>
      Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com>
      Cc: Olof Johansson <olof@lixom.net>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      bce06683
  3. 16 2月, 2010 2 次提交
  4. 12 12月, 2009 1 次提交
  5. 23 11月, 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 2 次提交
  8. 29 8月, 2009 1 次提交
  9. 29 5月, 2009 1 次提交