1. 09 12月, 2009 13 次提交
  2. 06 12月, 2009 1 次提交
  3. 03 12月, 2009 1 次提交
    • J
      VIDEO: Correct use of request_region/request_mem_region · 0fdd07f7
      Julia Lawall 提交于
      request_region should be used with release_region, not request_mem_region.
      
      Geert Uytterhoeven pointed out that in the case of drivers/video/gbefb.c,
      the problem is actually the other way around; request_mem_region should be
      used instead of request_region.
      
      The semantic patch that finds/fixes this problem is as follows:
      (http://coccinelle.lip6.fr/)
      
      // <smpl>
      @r1@
      expression start;
      @@
      
      request_region(start,...)
      
      @b1@
      expression r1.start;
      @@
      
      request_mem_region(start,...)
      
      @depends on !b1@
      expression r1.start;
      expression E;
      @@
      
      - release_mem_region
      + release_region
        (start,E)
      // </smpl>
      Signed-off-by: NJulia Lawall <julia@diku.dk>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      0fdd07f7
  4. 02 12月, 2009 1 次提交
  5. 01 12月, 2009 5 次提交
  6. 23 11月, 2009 1 次提交
  7. 18 11月, 2009 1 次提交
  8. 16 11月, 2009 3 次提交
  9. 14 11月, 2009 2 次提交
  10. 12 11月, 2009 5 次提交
  11. 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
  12. 20 10月, 2009 1 次提交
  13. 08 10月, 2009 2 次提交
  14. 06 10月, 2009 3 次提交