Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755262AbYLJGfj (ORCPT ); Wed, 10 Dec 2008 01:35:39 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751820AbYLJGfa (ORCPT ); Wed, 10 Dec 2008 01:35:30 -0500 Received: from wf-out-1314.google.com ([209.85.200.173]:44665 "EHLO wf-out-1314.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751141AbYLJGf3 (ORCPT ); Wed, 10 Dec 2008 01:35:29 -0500 Subject: [PATCH][RT] lock.h: fix spelling of contended From: Sven-Thorsten Dietrich To: Steven Rostedt Cc: LKML , linux-rt-users , Peter Zijlstra , Clark Williams , Ingo Molnar , Thomas Gleixner , Arnaldo Carvalho de Melo , Gregory Haskins , Darren Hart In-Reply-To: References: Content-Type: text/plain Organization: The Big Corporation Date: Tue, 09 Dec 2008 22:35:20 -0800 Message-Id: <1228890920.9542.2.camel@dd> Mime-Version: 1.0 X-Mailer: Evolution 2.24.1.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 856 Lines: 24 Maybe it'll save you a half second... Signed-off-by: Sven-Thorsten Dietrich diff --git a/include/linux/lock.h b/include/linux/lock.h index e0d10d6..785bf7d 100644 --- a/include/linux/lock.h +++ b/include/linux/lock.h @@ -11,7 +11,7 @@ #define DEFINE_LOCK(l) DEFINE_SPINLOCK(l) #define lock_init(l) spin_lock_init(l) #define lock_is_locked(l) spin_is_locked(l) -#define lock_is_contended(l) spin_is_conteted(l) +#define lock_is_contended(l) spin_is_contended(l) #define lock_can_lock(l) spin_can_lock(l) #define assert_lock_locked(l) assert_spin_locked(l) -- 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/