qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [5975] Add missing static qualifier
@ 2008-12-11  0:14 malc
  0 siblings, 0 replies; only message in thread
From: malc @ 2008-12-11  0:14 UTC (permalink / raw)
  To: qemu-devel

Revision: 5975
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5975
Author:   malc
Date:     2008-12-11 00:14:28 +0000 (Thu, 11 Dec 2008)

Log Message:
-----------
Add missing static qualifier

Caught by -Wstrict-prototypes

Modified Paths:
--------------
    trunk/hw/gus.c

Modified: trunk/hw/gus.c
===================================================================
--- trunk/hw/gus.c	2008-12-11 00:14:25 UTC (rev 5974)
+++ trunk/hw/gus.c	2008-12-11 00:14:28 UTC (rev 5975)
@@ -42,9 +42,9 @@
 #endif
 
 #define IO_READ_PROTO(name) \
-    uint32_t name (void *opaque, uint32_t nport)
+    static uint32_t name (void *opaque, uint32_t nport)
 #define IO_WRITE_PROTO(name) \
-    void name (void *opaque, uint32_t nport, uint32_t val)
+    static void name (void *opaque, uint32_t nport, uint32_t val)
 
 static struct {
     int port;
@@ -195,7 +195,7 @@
     DMA_hold_DREQ (der->gusdma);
 }
 
-int GUS_read_DMA (void *opaque, int nchan, int dma_pos, int dma_len)
+static int GUS_read_DMA (void *opaque, int nchan, int dma_pos, int dma_len)
 {
     GUSState *s = opaque;
     char tmpbuf[4096];

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-12-11  0:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-11  0:14 [Qemu-devel] [5975] Add missing static qualifier malc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).