1. 22 1月, 2013 4 次提交
  2. 28 11月, 2012 1 次提交
  3. 26 11月, 2012 1 次提交
  4. 14 10月, 2012 1 次提交
    • R
      ARM: config: sort select statements alphanumerically · b1b3f49c
      Russell King 提交于
      As suggested by Andrew Morton:
      
        This is a pet peeve of mine.  Any time there's a long list of items
        (header file inclusions, kconfig entries, array initalisers, etc) and
        someone wants to add a new item, they *always* go and stick it at the
        end of the list.
      
        Guys, don't do this.  Either put the new item into a randomly-chosen
        position or, probably better, alphanumerically sort the list.
      
      lets sort all our select statements alphanumerically.  This commit was
      created by the following perl:
      
      while (<>) {
      	while (/\\\s*$/) {
      		$_ .= <>;
      	}
      	undef %selects if /^\s*config\s+/;
      	if (/^\s+select\s+(\w+).*/) {
      		if (defined($selects{$1})) {
      			if ($selects{$1} eq $_) {
      				print STDERR "Warning: removing duplicated $1 entry\n";
      			} else {
      				print STDERR "Error: $1 differently selected\n".
      					"\tOld: $selects{$1}\n".
      					"\tNew: $_\n";
      				exit 1;
      			}
      		}
      		$selects{$1} = $_;
      		next;
      	}
      	if (%selects and (/^\s*$/ or /^\s+help/ or /^\s+---help---/ or
      			  /^endif/ or /^endchoice/)) {
      		foreach $k (sort (keys %selects)) {
      			print "$selects{$k}";
      		}
      		undef %selects;
      	}
      	print;
      }
      if (%selects) {
      	foreach $k (sort (keys %selects)) {
      		print "$selects{$k}";
      	}
      }
      
      It found two duplicates:
      
      Warning: removing duplicated S5P_SETUP_MIPIPHY entry
      Warning: removing duplicated HARDIRQS_SW_RESEND entry
      
      and they are identical duplicates, hence the shrinkage in the diffstat
      of two lines.
      
      We have four testers reporting success of this change (Tony, Stephen,
      Linus and Sekhar.)
      Acked-by: NJason Cooper <jason@lakedaemon.net>
      Acked-by: NTony Lindgren <tony@atomide.com>
      Acked-by: NStephen Warren <swarren@nvidia.com>
      Acked-by: NLinus Walleij <linus.walleij@linaro.org>
      Acked-by: NSekhar Nori <nsekhar@ti.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      b1b3f49c
  5. 09 8月, 2012 1 次提交
    • A
      ARM: s3c24xx: use new PWM driver · 35e79061
      Arnd Bergmann 提交于
      The samsung PWM driver has moved to the new PWM subsystem, which
      changed the Kconfig symbol for that driver, but the rx1950 and
      gta02 boards still uses the old one.
      
      Without this patch, building s3c2410_defconfig results in:
      
      arch/arm/mach-s3c24xx/built-in.o: In function `rx1950_lcd_power':
      arch/arm/mach-s3c24xx/mach-rx1950.c:430: undefined reference to `pwm_config'
      arch/arm/mach-s3c24xx/mach-rx1950.c:431: undefined reference to `pwm_disable'
      arch/arm/mach-s3c24xx/mach-rx1950.c:437: undefined reference to `pwm_config'
      arch/arm/mach-s3c24xx/mach-rx1950.c:438: undefined reference to `pwm_enable'
      arch/arm/mach-s3c24xx/built-in.o: In function `rx1950_backlight_exit':
      arch/arm/mach-s3c24xx/mach-rx1950.c:504: undefined reference to `pwm_free'
      arch/arm/mach-s3c24xx/built-in.o: In function `rx1950_backlight_init':
      arch/arm/mach-s3c24xx/mach-rx1950.c:487: undefined reference to `pwm_request'
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Reported-by: NTushar Behera <tushar.behera@linaro.org>
      Cc: Kukjin Kim <kgene.kim@samsung.com>
      35e79061
  6. 25 4月, 2012 2 次提交
  7. 07 3月, 2012 5 次提交
  8. 03 3月, 2012 7 次提交
  9. 21 9月, 2011 2 次提交
  10. 16 9月, 2011 1 次提交
  11. 19 5月, 2010 1 次提交
  12. 12 5月, 2010 1 次提交
  13. 07 5月, 2010 1 次提交
  14. 06 5月, 2010 1 次提交
  15. 01 12月, 2009 1 次提交
  16. 09 11月, 2009 1 次提交
  17. 17 9月, 2009 1 次提交
    • B
      ARM: S3C: Add missing selection of S3C_DEV_NAND in machine Kconfigs. · d23b3517
      Ben Dooks 提交于
      A number of machines that need s3c_device_nand present do not select
      this in their Kconfig entries. Add the necessary selection of the
      configuration S3C_DEV_NAND so that we avoid the following error:
      
      arch/arm/mach-s3c2410/built-in.o: In function `bast_map_io':
      arch/arm/mach-s3c2410/mach-bast.c:634: undefined reference to `s3c_device_nand'
      arch/arm/mach-s3c2412/built-in.o: In function `s3c2412_init_uarts':
      arch/arm/mach-s3c2412/s3c2412.c:109: undefined reference to `s3c_device_nand'
      arch/arm/mach-s3c2412/built-in.o: In function `jive_machine_init':
      arch/arm/mach-s3c2412/mach-jive.c:673: undefined reference to `s3c_device_nand'
      Signed-off-by: NBen Dooks <ben-linux@fluff.org>
      d23b3517
  18. 31 7月, 2009 2 次提交
  19. 07 5月, 2009 1 次提交
  20. 16 12月, 2008 2 次提交
  21. 27 11月, 2008 1 次提交
  22. 08 7月, 2008 1 次提交
  23. 03 7月, 2008 1 次提交