Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751728Ab1FHEx7 (ORCPT ); Wed, 8 Jun 2011 00:53:59 -0400 Received: from relay03.digicable.hu ([92.249.128.185]:51880 "EHLO relay03.digicable.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751372Ab1FHEx6 (ORCPT ); Wed, 8 Jun 2011 00:53:58 -0400 Message-ID: <4DEF0053.9030807@freemail.hu> Date: Wed, 08 Jun 2011 06:53:39 +0200 From: =?UTF-8?B?TsOpbWV0aCBNw6FydG9u?= User-Agent: Mozilla/5.0 (X11; U; Linux i686; hu-HU; rv:1.8.1.21) Gecko/20090402 SeaMonkey/1.1.16 MIME-Version: 1.0 To: Greg KH CC: Greg Kroah-Hartman , Matt Mooney , Endre Kollar , Ilia Mirkin , usbip-devel@lists.sourceforge.net, devel@driverdev.osuosl.org, LKML Subject: Re: [PATCH] usbip: change match_busid() to local function References: <4DE3F983.5050309@freemail.hu> <20110607213112.GA11067@kroah.com> In-Reply-To: <20110607213112.GA11067@kroah.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Original: 178.164.145.104 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1038 Lines: 26 From: Márton Németh The function match_busid() is only referenced in the stub_main.c so it can be changed to static. This will remove the following warning when compiling with "make W=1 ...": * drivers/staging/usbip/stub_main.c:40: warning: no previous prototype for ‘match_busid’ Signed-off-by: Márton Németh --- diff --git a/drivers/staging/usbip/stub_main.c b/drivers/staging/usbip/stub_main.c index e9085d6..fc5b829 100644 --- a/drivers/staging/usbip/stub_main.c +++ b/drivers/staging/usbip/stub_main.c @@ -37,7 +37,7 @@ struct kmem_cache *stub_priv_cache; static struct bus_id_priv busid_table[MAX_BUSID]; static spinlock_t busid_table_lock; -int match_busid(const char *busid) +static int match_busid(const char *busid) { int i; -- 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/