Skip to content

Commit 402a917

Browse files
committed
Merge master.kernel.org:/home/rmk/linux-2.6-arm
* master.kernel.org:/home/rmk/linux-2.6-arm: [ARM] 5405/1: ep93xx: remove unused gesbc9312.h header [ARM] 5404/1: Fix condition in arm_elf_read_implies_exec() to set READ_IMPLIES_EXEC [ARM] omap: fix clock reparenting in omap2_clk_set_parent() [ARM] 5403/1: pxa25x_ep_fifo_flush() *ep->reg_udccs always set to 0 [ARM] 5402/1: fix a case of wrap-around in sanity_check_meminfo() [ARM] 5401/1: Orion: fix edge triggered GPIO interrupt support [ARM] 5400/1: Add support for inverted rdy_busy pin for Atmel nand device controller [ARM] 5391/1: AT91: Enable GPIO clocks earlier [ARM] 5390/1: AT91: Watchdog fixes [ARM] 5398/1: Add Wan ZongShun to MAINTAINERS for W90P910 [ARM] omap: fix _omap2_clksel_get_src_field() [ARM] omap: fix omap2_divisor_to_clksel() error return value
2 parents bcf8951 + 9dd446f commit 402a917

File tree

28 files changed

+77
-88
lines changed

28 files changed

+77
-88
lines changed

MAINTAINERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -692,6 +692,13 @@ M: kernel@wantstofly.org
692692
L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
693693
S: Maintained
694694

695+
ARM/NUVOTON W90X900 ARM ARCHITECTURE
696+
P: Wan ZongShun
697+
M: mcuos.com@gmail.com
698+
L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
699+
W: http://www.mcuos.com
700+
S: Maintained
701+
695702
ARPD SUPPORT
696703
P: Jonathan Layes
697704
L: netdev@vger.kernel.org

arch/arm/configs/at91sam9260ek_defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ CONFIG_WATCHDOG_NOWAYOUT=y
608608
# Watchdog Device Drivers
609609
#
610610
# CONFIG_SOFT_WATCHDOG is not set
611-
CONFIG_AT91SAM9_WATCHDOG=y
611+
CONFIG_AT91SAM9X_WATCHDOG=y
612612

613613
#
614614
# USB-based Watchdog Cards

arch/arm/configs/at91sam9261ek_defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ CONFIG_WATCHDOG_NOWAYOUT=y
700700
# Watchdog Device Drivers
701701
#
702702
# CONFIG_SOFT_WATCHDOG is not set
703-
CONFIG_AT91SAM9_WATCHDOG=y
703+
CONFIG_AT91SAM9X_WATCHDOG=y
704704

705705
#
706706
# USB-based Watchdog Cards

arch/arm/configs/at91sam9263ek_defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ CONFIG_WATCHDOG_NOWAYOUT=y
710710
# Watchdog Device Drivers
711711
#
712712
# CONFIG_SOFT_WATCHDOG is not set
713-
CONFIG_AT91SAM9_WATCHDOG=y
713+
CONFIG_AT91SAM9X_WATCHDOG=y
714714

715715
#
716716
# USB-based Watchdog Cards

arch/arm/configs/at91sam9rlek_defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ CONFIG_WATCHDOG_NOWAYOUT=y
606606
# Watchdog Device Drivers
607607
#
608608
# CONFIG_SOFT_WATCHDOG is not set
609-
CONFIG_AT91SAM9_WATCHDOG=y
609+
CONFIG_AT91SAM9X_WATCHDOG=y
610610

611611
#
612612
# Sonics Silicon Backplane

arch/arm/configs/qil-a9260_defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ CONFIG_WATCHDOG_NOWAYOUT=y
727727
# Watchdog Device Drivers
728728
#
729729
# CONFIG_SOFT_WATCHDOG is not set
730-
# CONFIG_AT91SAM9_WATCHDOG is not set
730+
# CONFIG_AT91SAM9X_WATCHDOG is not set
731731

732732
#
733733
# USB-based Watchdog Cards

arch/arm/kernel/elf.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ EXPORT_SYMBOL(elf_set_personality);
7474
*/
7575
int arm_elf_read_implies_exec(const struct elf32_hdr *x, int executable_stack)
7676
{
77-
if (executable_stack != EXSTACK_ENABLE_X)
77+
if (executable_stack != EXSTACK_DISABLE_X)
7878
return 1;
79-
if (cpu_architecture() <= CPU_ARCH_ARMv6)
79+
if (cpu_architecture() < CPU_ARCH_ARMv6)
8080
return 1;
8181
return 0;
8282
}

arch/arm/mach-at91/at91cap9_devices.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ static void __init at91_add_device_rtt(void)
697697
* Watchdog
698698
* -------------------------------------------------------------------- */
699699

700-
#if defined(CONFIG_AT91SAM9_WATCHDOG) || defined(CONFIG_AT91SAM9_WATCHDOG_MODULE)
700+
#if defined(CONFIG_AT91SAM9X_WATCHDOG) || defined(CONFIG_AT91SAM9X_WATCHDOG_MODULE)
701701
static struct platform_device at91cap9_wdt_device = {
702702
.name = "at91_wdt",
703703
.id = -1,

arch/arm/mach-at91/at91sam9260_devices.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ static void __init at91_add_device_rtt(void)
643643
* Watchdog
644644
* -------------------------------------------------------------------- */
645645

646-
#if defined(CONFIG_AT91SAM9_WATCHDOG) || defined(CONFIG_AT91SAM9_WATCHDOG_MODULE)
646+
#if defined(CONFIG_AT91SAM9X_WATCHDOG) || defined(CONFIG_AT91SAM9X_WATCHDOG_MODULE)
647647
static struct platform_device at91sam9260_wdt_device = {
648648
.name = "at91_wdt",
649649
.id = -1,

arch/arm/mach-at91/at91sam9261_devices.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ static void __init at91_add_device_rtt(void)
621621
* Watchdog
622622
* -------------------------------------------------------------------- */
623623

624-
#if defined(CONFIG_AT91SAM9_WATCHDOG) || defined(CONFIG_AT91SAM9_WATCHDOG_MODULE)
624+
#if defined(CONFIG_AT91SAM9X_WATCHDOG) || defined(CONFIG_AT91SAM9X_WATCHDOG_MODULE)
625625
static struct platform_device at91sam9261_wdt_device = {
626626
.name = "at91_wdt",
627627
.id = -1,

0 commit comments

Comments
 (0)