From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750805AbVKSUef (ORCPT ); Sat, 19 Nov 2005 15:34:35 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750809AbVKSUec (ORCPT ); Sat, 19 Nov 2005 15:34:32 -0500 Received: from mailout.stusta.mhn.de ([141.84.69.5]:43013 "HELO mailout.stusta.mhn.de") by vger.kernel.org with SMTP id S1750810AbVKSUct (ORCPT ); Sat, 19 Nov 2005 15:32:49 -0500 Date: Sat, 19 Nov 2005 09:12:46 +0100 From: Adrian Bunk To: bfennema@falcon.csc.calpoly.edu Cc: linux_udf@hpesjro.fc.hp.com, linux-kernel@vger.kernel.org Subject: [2.6 patch] fs/udf/balloc.c: "extern inline" -> "static inline" Message-ID: <20051119081246.GI16060@stusta.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org "extern inline" doesn't make much sense. Signed-off-by: Adrian Bunk --- linux-2.6.15-rc1-mm2-full/fs/udf/balloc.c.old 2005-11-19 02:32:13.000000000 +0100 +++ linux-2.6.15-rc1-mm2-full/fs/udf/balloc.c 2005-11-19 02:32:20.000000000 +0100 @@ -46,7 +46,7 @@ #define uint(x) xuint(x) #define xuint(x) __le ## x -extern inline int find_next_one_bit (void * addr, int size, int offset) +static inline int find_next_one_bit (void * addr, int size, int offset) { uintBPL_t * p = ((uintBPL_t *) addr) + (offset / BITS_PER_LONG); int result = offset & ~(BITS_PER_LONG-1);