Merge tag 'metag-for-v4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/jhogan...
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 5 Aug 2016 12:58:00 +0000 (08:58 -0400)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 5 Aug 2016 12:58:00 +0000 (08:58 -0400)
Pull metag architecture updates from James Hogan:
 "Just a few minor fixes:

   - Fix another incorrect inline asm register constraint, which has
     been lying quietly for 5 and a half years before finally causing
     build breakage during this merge window.

   - Removal of duplicated KERN_INFO from Joe Perches

   - Typo fixes from Andrea Gelmini"

* tag 'metag-for-v4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag:
  metag: Fix __cmpxchg_u32 asm constraint for CMP
  metag: Remove duplicate KERN_<LEVEL> prefix
  metag: Fix typos

1  2 
arch/metag/mm/fault.c

diff --combined arch/metag/mm/fault.c
@@@ -133,7 -133,7 +133,7 @@@ good_area
         * make sure we exit gracefully rather than endlessly redo
         * the fault.
         */
 -      fault = handle_mm_fault(mm, vma, address, flags);
 +      fault = handle_mm_fault(vma, address, flags);
  
        if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current))
                return 0;
@@@ -187,7 -187,7 +187,7 @@@ bad_area_nosemaphore
  
                if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
                    printk_ratelimit()) {
-                       pr_info("%s%s[%d]: segfault at %lx pc %08x sp %08x write %d trap %#x (%s)",
+                       printk("%s%s[%d]: segfault at %lx pc %08x sp %08x write %d trap %#x (%s)",
                               task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
                               tsk->comm, task_pid_nr(tsk), address,
                               regs->ctx.CurrPC, regs->ctx.AX[0].U0,