From 153ad5aca21d88f5ffd8d736e06bb23273af9b31 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Thu, 15 Jan 2009 13:47:28 +0000 Subject: [PATCH] Make lsi_scsi_uninit() static MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes: qemu/hw/lsi53c895a.c:1964: warning: no previous prototype for ‘lsi_scsi_uninit’ Signed-off-by: Mark McLoughlin Signed-off-by: Avi Kivity --- hw/lsi53c895a.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/lsi53c895a.c b/hw/lsi53c895a.c index c65ff904ea..9622c6cfe6 100644 --- a/hw/lsi53c895a.c +++ b/hw/lsi53c895a.c @@ -1961,7 +1961,7 @@ void lsi_scsi_attach(void *opaque, BlockDriverState *bd, int id) bd->devfn = s->pci_dev.devfn; } -int lsi_scsi_uninit(PCIDevice *d) +static int lsi_scsi_uninit(PCIDevice *d) { LSIState *s = (LSIState *) d; -- 2.11.4.GIT