Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756489AbZDUSXk (ORCPT ); Tue, 21 Apr 2009 14:23:40 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752786AbZDUSX3 (ORCPT ); Tue, 21 Apr 2009 14:23:29 -0400 Received: from wf-out-1314.google.com ([209.85.200.173]:35107 "EHLO wf-out-1314.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751051AbZDUSX3 (ORCPT ); Tue, 21 Apr 2009 14:23:29 -0400 Subject: [PATCH][RT] - Mismatching declaration and export From: Sven-Thorsten Dietrich To: linux-rt-users Cc: LKML Content-Type: text/plain Date: Tue, 21 Apr 2009 11:23:25 -0700 Message-Id: <1240338205.13601.17.camel@quadrophenia.thebigcorporation.com> 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: 801 Lines: 24 Subject: Make function declaration match EXPORT() Signed-off-by: Sven-Thorsten Dietrich Index: b/kernel/spinlock.c =================================================================== --- a/kernel/spinlock.c +++ b/kernel/spinlock.c @@ -354,7 +354,7 @@ void __lockfunc _spin_lock_nest_lock(spi } EXPORT_SYMBOL(_spin_lock_nest_lock); -unsigned long __lockfunc _spin_lock_irqsave_nested(spinlock_t *lock, int subclass) +unsigned long __lockfunc __spin_lock_irqsave_nested(spinlock_t *lock, int subclass) { unsigned long flags; -- 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/