1. 05 2月, 2013 1 次提交
  2. 19 1月, 2013 1 次提交
  3. 11 1月, 2013 1 次提交
  4. 29 12月, 2012 1 次提交
    • K
      ARM: EXYNOS: enable PINCTRL for EXYNOS5440 · b2318482
      Kukjin Kim 提交于
      This patch removes following warning in kernel boot log,
      Because EXYNOS5440 can support only Pinctrl not GPIO.
      
      WARNING: at drivers/gpio/gpio-samsung.c:3102 samsung_gpiolib_init+0x68/0x8c()
      Unknown SoC in gpio-samsung, no GPIOs added
      
      Cc: Thomas Abraham <thomas.ab@samsung.com>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      b2318482
  5. 28 11月, 2012 1 次提交
  6. 22 11月, 2012 1 次提交
  7. 19 10月, 2012 1 次提交
  8. 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
  9. 21 9月, 2012 1 次提交
  10. 13 9月, 2012 3 次提交
  11. 07 9月, 2012 1 次提交
  12. 19 7月, 2012 1 次提交
  13. 13 7月, 2012 2 次提交
  14. 27 6月, 2012 1 次提交
  15. 11 6月, 2012 2 次提交
  16. 20 5月, 2012 1 次提交
  17. 16 5月, 2012 2 次提交
  18. 14 5月, 2012 1 次提交
  19. 13 5月, 2012 2 次提交
  20. 12 5月, 2012 7 次提交
  21. 14 4月, 2012 1 次提交
  22. 05 4月, 2012 1 次提交
    • K
      ARM: EXYNOS: Change System MMU platform device definitions · bca10b90
      KyongHo Cho 提交于
      Handling System MMUs with an identifier is not flexible to manage
      System MMU platform devices because of the following reasons:
      1. A device driver which needs to handle System MMU must know the ID.
      2. A System MMU may not present in some implementations of Exynos family.
      3. Handling System MMU with IOMMU API does not require an ID.
      
      This patch is the result of removing ID of System MMUs.
      Instead, a device driver that needs to handle its System MMU must
      use IOMMU API while its descriptor of platform device is given.
      
      This patch also includes the following enhancements:
      - A System MMU device becomes a child if its power domain device.
      - clkdev
      Signed-off-by: NKyongHo Cho <pullip.cho@samsung.com>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      bca10b90
  23. 15 3月, 2012 1 次提交
  24. 14 3月, 2012 1 次提交
  25. 11 3月, 2012 4 次提交