diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-12 18:26:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-12 18:26:48 -0500 |
commit | 26ceb127f7bcf473db926c6a026b18ddd6f274e8 (patch) | |
tree | a8944a9c0730c409b0cfb17c541085face068556 /arch/arm/common | |
parent | 8d14066755592a2906b4f2378aeb5471b602d3cb (diff) | |
parent | e9f2d6d66037cdf97487491e04053f411abc5d16 (diff) |
Merge branch 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm
Pull ARM updates from Russell King:
"The major updates included in this update are:
- Clang compatible stack pointer accesses by Behan Webster.
- SA11x0 updates from Dmitry Eremin-Solenikov.
- kgdb handling of breakpoints with read-only text/modules
- Support for Privileged-no-execute feature on ARMv7 to prevent
userspace code execution by the kernel.
- AMBA primecell bus handling of irq-safe runtime PM
- Unwinding support for memset/memzero/memmove/memcpy functions
- VFP fixes for Krait CPUs and improvements in detecting the VFP
architecture
- A number of code cleanups (using pr_*, removing or reducing the
severity of a couple of kernel messages, splitting ftrace asm code
out to a separate file, etc.)
- Add machine name to stack dump output"
* 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm: (62 commits)
ARM: 8247/2: pcmcia: sa1100: make use of device clock
ARM: 8246/2: pcmcia: sa1111: provide device clock
ARM: 8245/1: pcmcia: soc-common: enable/disable socket clocks
ARM: 8244/1: fbdev: sa1100fb: make use of device clock
ARM: 8243/1: sa1100: add a clock alias for sa1111 pcmcia device
ARM: 8242/1: sa1100: add cpu clock
ARM: 8221/1: PJ4: allow building in Thumb-2 mode
ARM: 8234/1: sa1100: reorder IRQ handling code
ARM: 8233/1: sa1100: switch to hwirq usage
ARM: 8232/1: sa1100: merge GPIO multiplexer IRQ to "normal" irq domain
ARM: 8231/1: sa1100: introduce irqdomains support
ARM: 8230/1: sa1100: shift IRQs by one
ARM: 8229/1: sa1100: replace irq numbers with names in irq driver
ARM: 8228/1: sa1100: drop entry-macro.S
ARM: 8227/1: sa1100: switch to MULTI_IRQ_HANDLER
ARM: 8241/1: Update processor_modes for hyp and monitor mode
ARM: 8240/1: MCPM: document mcpm_sync_init()
ARM: 8239/1: Introduce {set,clear}_pte_bit
ARM: 8238/1: mm: Refine set_memory_* functions
ARM: 8237/1: fix flush_pfn_alias
...
Diffstat (limited to 'arch/arm/common')
-rw-r--r-- | arch/arm/common/sa1111.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/arch/arm/common/sa1111.c b/arch/arm/common/sa1111.c index e57d7e5bf96a..7b69c5f9cd74 100644 --- a/arch/arm/common/sa1111.c +++ b/arch/arm/common/sa1111.c | |||
@@ -282,8 +282,8 @@ static int sa1111_retrigger_lowirq(struct irq_data *d) | |||
282 | } | 282 | } |
283 | 283 | ||
284 | if (i == 8) | 284 | if (i == 8) |
285 | printk(KERN_ERR "Danger Will Robinson: failed to " | 285 | pr_err("Danger Will Robinson: failed to re-trigger IRQ%d\n", |
286 | "re-trigger IRQ%d\n", d->irq); | 286 | d->irq); |
287 | return i == 8 ? -1 : 0; | 287 | return i == 8 ? -1 : 0; |
288 | } | 288 | } |
289 | 289 | ||
@@ -384,8 +384,8 @@ static int sa1111_retrigger_highirq(struct irq_data *d) | |||
384 | } | 384 | } |
385 | 385 | ||
386 | if (i == 8) | 386 | if (i == 8) |
387 | printk(KERN_ERR "Danger Will Robinson: failed to " | 387 | pr_err("Danger Will Robinson: failed to re-trigger IRQ%d\n", |
388 | "re-trigger IRQ%d\n", d->irq); | 388 | d->irq); |
389 | return i == 8 ? -1 : 0; | 389 | return i == 8 ? -1 : 0; |
390 | } | 390 | } |
391 | 391 | ||
@@ -740,9 +740,8 @@ static int __sa1111_probe(struct device *me, struct resource *mem, int irq) | |||
740 | goto err_unmap; | 740 | goto err_unmap; |
741 | } | 741 | } |
742 | 742 | ||
743 | printk(KERN_INFO "SA1111 Microprocessor Companion Chip: " | 743 | pr_info("SA1111 Microprocessor Companion Chip: silicon revision %lx, metal revision %lx\n", |
744 | "silicon revision %lx, metal revision %lx\n", | 744 | (id & SKID_SIREV_MASK) >> 4, id & SKID_MTREV_MASK); |
745 | (id & SKID_SIREV_MASK)>>4, (id & SKID_MTREV_MASK)); | ||
746 | 745 | ||
747 | /* | 746 | /* |
748 | * We found it. Wake the chip up, and initialise. | 747 | * We found it. Wake the chip up, and initialise. |