aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2014-10-13 21:54:50 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-10-13 21:54:50 -0400
commitdfe2c6dcc8ca2cdc662d7c0473e9811b72ef3370 (patch)
tree9ed639a08c16322cdf136d576f42df5b97cd1549 /arch/arm
parenta45d572841a24db02a62cf05e1157c35fdd3705b (diff)
parent64e455079e1bd7787cc47be30b7f601ce682a5f6 (diff)
Merge branch 'akpm' (patches from Andrew Morton)
Merge second patch-bomb from Andrew Morton: - a few hotfixes - drivers/dma updates - MAINTAINERS updates - Quite a lot of lib/ updates - checkpatch updates - binfmt updates - autofs4 - drivers/rtc/ - various small tweaks to less used filesystems - ipc/ updates - kernel/watchdog.c changes * emailed patches from Andrew Morton <akpm@linux-foundation.org>: (135 commits) mm: softdirty: enable write notifications on VMAs after VM_SOFTDIRTY cleared kernel/param: consolidate __{start,stop}___param[] in <linux/moduleparam.h> ia64: remove duplicate declarations of __per_cpu_start[] and __per_cpu_end[] frv: remove unused declarations of __start___ex_table and __stop___ex_table kvm: ensure hard lockup detection is disabled by default kernel/watchdog.c: control hard lockup detection default staging: rtl8192u: use %*pEn to escape buffer staging: rtl8192e: use %*pEn to escape buffer staging: wlan-ng: use %*pEhp to print SN lib80211: remove unused print_ssid() wireless: hostap: proc: print properly escaped SSID wireless: ipw2x00: print SSID via %*pE wireless: libertas: print esaped string via %*pE lib/vsprintf: add %*pE[achnops] format specifier lib / string_helpers: introduce string_escape_mem() lib / string_helpers: refactoring the test suite lib / string_helpers: move documentation to c-file include/linux: remove strict_strto* definitions arch/x86/mm/numa.c: fix boot failure when all nodes are hotpluggable fs: check bh blocknr earlier when searching lru ...
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/boot/dts/exynos3250.dtsi2
-rw-r--r--arch/arm/mach-pxa/lpd270.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/boot/dts/exynos3250.dtsi b/arch/arm/boot/dts/exynos3250.dtsi
index 1d52de6370d5..429a6c6cfcf9 100644
--- a/arch/arm/boot/dts/exynos3250.dtsi
+++ b/arch/arm/boot/dts/exynos3250.dtsi
@@ -164,7 +164,7 @@
164 }; 164 };
165 165
166 rtc: rtc@10070000 { 166 rtc: rtc@10070000 {
167 compatible = "samsung,s3c6410-rtc"; 167 compatible = "samsung,exynos3250-rtc";
168 reg = <0x10070000 0x100>; 168 reg = <0x10070000 0x100>;
169 interrupts = <0 73 0>, <0 74 0>; 169 interrupts = <0 73 0>, <0 74 0>;
170 status = "disabled"; 170 status = "disabled";
diff --git a/arch/arm/mach-pxa/lpd270.c b/arch/arm/mach-pxa/lpd270.c
index 9f6ec167902a..ad777b353bd5 100644
--- a/arch/arm/mach-pxa/lpd270.c
+++ b/arch/arm/mach-pxa/lpd270.c
@@ -416,17 +416,17 @@ static struct pxafb_mach_info *lpd270_lcd_to_use;
416 416
417static int __init lpd270_set_lcd(char *str) 417static int __init lpd270_set_lcd(char *str)
418{ 418{
419 if (!strnicmp(str, "lq057q3dc02", 11)) { 419 if (!strncasecmp(str, "lq057q3dc02", 11)) {
420 lpd270_lcd_to_use = &sharp_lq057q3dc02; 420 lpd270_lcd_to_use = &sharp_lq057q3dc02;
421 } else if (!strnicmp(str, "lq121s1dg31", 11)) { 421 } else if (!strncasecmp(str, "lq121s1dg31", 11)) {
422 lpd270_lcd_to_use = &sharp_lq121s1dg31; 422 lpd270_lcd_to_use = &sharp_lq121s1dg31;
423 } else if (!strnicmp(str, "lq036q1da01", 11)) { 423 } else if (!strncasecmp(str, "lq036q1da01", 11)) {
424 lpd270_lcd_to_use = &sharp_lq036q1da01; 424 lpd270_lcd_to_use = &sharp_lq036q1da01;
425 } else if (!strnicmp(str, "lq64d343", 8)) { 425 } else if (!strncasecmp(str, "lq64d343", 8)) {
426 lpd270_lcd_to_use = &sharp_lq64d343; 426 lpd270_lcd_to_use = &sharp_lq64d343;
427 } else if (!strnicmp(str, "lq10d368", 8)) { 427 } else if (!strncasecmp(str, "lq10d368", 8)) {
428 lpd270_lcd_to_use = &sharp_lq10d368; 428 lpd270_lcd_to_use = &sharp_lq10d368;
429 } else if (!strnicmp(str, "lq035q7db02-20", 14)) { 429 } else if (!strncasecmp(str, "lq035q7db02-20", 14)) {
430 lpd270_lcd_to_use = &sharp_lq035q7db02_20; 430 lpd270_lcd_to_use = &sharp_lq035q7db02_20;
431 } else { 431 } else {
432 printk(KERN_INFO "lpd270: unknown lcd panel [%s]\n", str); 432 printk(KERN_INFO "lpd270: unknown lcd panel [%s]\n", str);