From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S937264AbXHHTEJ (ORCPT ); Wed, 8 Aug 2007 15:04:09 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760363AbXHHTD4 (ORCPT ); Wed, 8 Aug 2007 15:03:56 -0400 Received: from ms-smtp-01.nyroc.rr.com ([24.24.2.55]:47268 "EHLO ms-smtp-01.nyroc.rr.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756674AbXHHTDz (ORCPT ); Wed, 8 Aug 2007 15:03:55 -0400 Subject: [PATCH RT] Add missing semicolon in percpu_list.h From: Steven Rostedt To: Ingo Molnar Cc: RT , Thomas Gleixner , LKML Content-Type: text/plain Date: Wed, 08 Aug 2007 15:03:12 -0400 Message-Id: <1186599792.29097.7.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.10.2 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Ingo, This patch adds a missing semicolon in the percpu_list.h under !CONFIG_SMP. Signed-off-by: Steven Rostedt Index: linux-2.6.23-rc2-rt2/include/linux/percpu_list.h =================================================================== --- linux-2.6.23-rc2-rt2.orig/include/linux/percpu_list.h +++ linux-2.6.23-rc2-rt2/include/linux/percpu_list.h @@ -84,7 +84,7 @@ void percpu_list_fold(struct percpu_list struct percpu_list { struct lock_list_head list; -} +}; static inline void percpu_list_init(struct percpu_list *pcl)