From: malc <av1474@comtv.ru>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [5975] Add missing static qualifier
Date: Thu, 11 Dec 2008 00:14:28 +0000 [thread overview]
Message-ID: <E1LAZCG-00062g-Dn@cvs.savannah.gnu.org> (raw)
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 other threads:[~2008-12-11 0:14 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1LAZCG-00062g-Dn@cvs.savannah.gnu.org \
--to=av1474@comtv.ru \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).