Signed-off-by: Juan Quintela <quint...@redhat.com> --- hw/gus.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/hw/gus.c b/hw/gus.c index c6b98b3..101e645 100644 --- a/hw/gus.c +++ b/hw/gus.c @@ -41,8 +41,6 @@ #define GUS_ENDIANNESS 0 #endif -#define IO_READ_PROTO(name) \ - static uint32_t name (void *opaque, uint32_t nport) #define IO_WRITE_PROTO(name) \ static void name (void *opaque, uint32_t nport, uint32_t val) @@ -61,14 +59,14 @@ typedef struct GUSState { qemu_irq pic; } GUSState; -IO_READ_PROTO (gus_readb) +static uint32_t gus_readb (void *opaque, uint32_t nport) { GUSState *s = opaque; return gus_read (&s->emu, nport, 1); } -IO_READ_PROTO (gus_readw) +static uint32_t gus_readw (void *opaque, uint32_t nport) { GUSState *s = opaque; -- 1.6.2.5