Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261882AbUKJE6u (ORCPT ); Tue, 9 Nov 2004 23:58:50 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261881AbUKJE6L (ORCPT ); Tue, 9 Nov 2004 23:58:11 -0500 Received: from l247150.ppp.asahi-net.or.jp ([218.219.247.150]:57255 "EHLO mitou.ysato.dip.jp") by vger.kernel.org with ESMTP id S261882AbUKJEzY (ORCPT ); Tue, 9 Nov 2004 23:55:24 -0500 Date: Wed, 10 Nov 2004 13:55:23 +0900 Message-ID: From: Yoshinori Sato To: Linus Torvalds , Andrew Morton Cc: linux-kernel@vger.kernel.org Subject: [PATCH] fix "extern inline" User-Agent: Wanderlust/2.11.30 (Wonderwall) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386-pc-linux-gnu) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 852 Lines: 31 Signed-off-by: Yoshinori Sato ===== include/linux/bitops.h 1.6 vs edited ===== --- 1.6/include/linux/bitops.h 2004-05-03 05:04:34 +09:00 +++ edited/include/linux/bitops.h 2004-11-08 15:36:48 +09:00 @@ -42,7 +42,7 @@ * fls: find last bit set. */ -extern __inline__ int generic_fls(int x) +static __inline__ int generic_fls(int x) { int r = 32; @@ -71,7 +71,7 @@ return r; } -extern __inline__ int get_bitmask_order(unsigned int count) +static __inline__ int get_bitmask_order(unsigned int count) { int order; -- Yoshinori Sato - 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/