]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
ARM: arch/arm/kernel/hw_breakpoint.c: Convert WARN_ON to WARN
authorJoe Perches <joe@perches.com>
Sat, 30 Oct 2010 21:21:24 +0000 (14:21 -0700)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Sun, 7 Nov 2010 17:58:39 +0000 (17:58 +0000)
Message isn't printed by WARN_ON.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/kernel/hw_breakpoint.c

index 54593b0c241b4ec78d7b6f23356666787eedd7b4..21e3a4ab3b8c58047304b694aa8161b9ebbf1c31 100644 (file)
@@ -748,8 +748,7 @@ static int hw_breakpoint_pending(unsigned long addr, unsigned int fsr,
                breakpoint_handler(addr, regs);
                break;
        case ARM_ENTRY_ASYNC_WATCHPOINT:
-               WARN_ON("Asynchronous watchpoint exception taken. "
-                       "Debugging results may be unreliable");
+               WARN(1, "Asynchronous watchpoint exception taken. Debugging results may be unreliable\n");
        case ARM_ENTRY_SYNC_WATCHPOINT:
                watchpoint_handler(addr, regs);
                break;