Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757586AbbEWFIL (ORCPT ); Sat, 23 May 2015 01:08:11 -0400 Received: from mail-pd0-f175.google.com ([209.85.192.175]:36347 "EHLO mail-pd0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1945912AbbEWFIH (ORCPT ); Sat, 23 May 2015 01:08:07 -0400 From: Shailendra Verma To: Don Zickus , Andrew Morton , Ulrich Obergfell , Ingo Molnar , Andrew Jones , chai wen , Aaron Tomlin , Stephane Eranian Cc: linux-kernel@vger.kernel.org, Shailendra Verma Subject: [PATCH] kernel:watchdog - Fix for typo in comment in function watchdog_nmi_enable(). Date: Sat, 23 May 2015 10:37:53 +0530 Message-Id: <1432357673-4169-1-git-send-email-shailendra.capricorn@gmail.com> X-Mailer: git-send-email 1.7.9.5 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 912 Lines: 27 Signed-off-by: Shailendra Verma --- kernel/watchdog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/watchdog.c b/kernel/watchdog.c index 581a68a..4cf0ff8 100644 --- a/kernel/watchdog.c +++ b/kernel/watchdog.c @@ -539,7 +539,7 @@ static int watchdog_nmi_enable(unsigned int cpu) /* Try to register using hardware perf events */ event = perf_event_create_kernel_counter(wd_attr, cpu, NULL, watchdog_overflow_callback, NULL); - /* save cpu0 error for future comparision */ + /* save cpu0 error for future comparison */ if (cpu == 0 && IS_ERR(event)) cpu0_err = PTR_ERR(event); -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/