qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [5975] Add missing static qualifier


From: malc
Subject: [Qemu-devel] [5975] Add missing static qualifier
Date: Thu, 11 Dec 2008 00:14:28 +0000

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];






reply via email to

[Prev in Thread] Current Thread [Next in Thread]