1. 20 3月, 2010 1 次提交
  2. 02 3月, 2010 1 次提交
  3. 27 2月, 2010 1 次提交
  4. 16 2月, 2010 1 次提交
  5. 05 2月, 2010 1 次提交
  6. 13 1月, 2010 1 次提交
    • R
      mtd: Really add ARM pismo support · f6a8c609
      Russell King - ARM Linux 提交于
      (Commit 7cb777a3 (mtd: add ARM pismo support)
      intended to add this, but seems only to have patched the Makefile without
      touching Kconfig or providing any code...)
      
      The following patch adds support for PISMO modules found on ARM Ltd
      development platforms.  These are MTD modules, and can have a
      selection of SRAM, flash or DOC devices as described by an on-board
      I2C EEPROM.
      
      We support SRAM and NOR flash devices only by registering appropriate
      conventional MTD platform devices as children of the 'pismo' device.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
      f6a8c609
  7. 14 12月, 2009 1 次提交
  8. 04 12月, 2009 1 次提交
  9. 30 11月, 2009 3 次提交
  10. 29 11月, 2009 3 次提交
  11. 20 11月, 2009 1 次提交
  12. 17 11月, 2009 1 次提交
  13. 10 11月, 2009 1 次提交
  14. 09 11月, 2009 3 次提交
  15. 21 10月, 2009 2 次提交
    • H
      mtd: Fix compile failure and error path in physmap.c · 8ce110ac
      H Hartley Sweeten 提交于
      Commit 4b56ffca ("mtd: Fix kernel NULL
      pointer dereference in physmap.c") introduced a couple of bugs.
      
      It neglected to run the loop of map_destroy() calls in
      physmap_flash_remove(), if !info->cmtd, which would happen if that
      function was called to clean up errors during probe.
      
      It also failed to compile if CONFIG_MTD_PARTITIONS was not defined.
      Reported-By: NAtsushi Nemoto <anemo@mba.ocn.ne.jp>
      Signed-off-by: NH Hartley Sweeten <hsweeten@visionengravers.com>
      Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
      8ce110ac
    • 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
  16. 20 10月, 2009 1 次提交
  17. 19 10月, 2009 1 次提交
  18. 17 10月, 2009 2 次提交
  19. 28 9月, 2009 1 次提交
  20. 25 9月, 2009 2 次提交
  21. 21 9月, 2009 2 次提交
  22. 20 9月, 2009 4 次提交
  23. 16 9月, 2009 1 次提交
  24. 04 9月, 2009 4 次提交