From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrian Bunk Subject: [-mm patch] make drivers/scsi/pata_pcmcia.c:pcmcia_remove_one() static Date: Thu, 22 Jun 2006 01:20:12 +0200 Message-ID: <20060621232012.GT9111@stusta.de> References: <20060621034857.35cfe36f.akpm@osdl.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from emailhub.stusta.mhn.de ([141.84.69.5]:39179 "HELO mailout.stusta.mhn.de") by vger.kernel.org with SMTP id S1030462AbWFUXUN (ORCPT ); Wed, 21 Jun 2006 19:20:13 -0400 Content-Disposition: inline In-Reply-To: <20060621034857.35cfe36f.akpm@osdl.org> Sender: linux-ide-owner@vger.kernel.org List-Id: linux-ide@vger.kernel.org To: Andrew Morton , alan@redhat.com Cc: linux-kernel@vger.kernel.org, jgarzik@pobox.com, linux-ide@vger.kernel.org On Wed, Jun 21, 2006 at 03:48:57AM -0700, Andrew Morton wrote: >... > Changes since 2.6.17-rc6-mm2: >... > git-libata-all.patch >... > git trees >... This patch makes a needlessly global function static. Signed-off-by: Adrian Bunk --- linux-2.6.17-mm1-full/drivers/scsi/pata_pcmcia.c.old 2006-06-22 00:43:23.000000000 +0200 +++ linux-2.6.17-mm1-full/drivers/scsi/pata_pcmcia.c 2006-06-22 00:43:33.000000000 +0200 @@ -294,7 +294,7 @@ * cleanup. Also called on module unload for any active devices. */ -void pcmcia_remove_one(struct pcmcia_device *pdev) +static void pcmcia_remove_one(struct pcmcia_device *pdev) { struct ata_pcmcia_info *info = pdev->priv; struct device *dev = &pdev->dev;