aboutsummaryrefslogtreecommitdiff
path: root/hw/sb16.c
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2009-06-20 05:13:29 +0400
committermalc <av1474@comtv.ru>2009-06-20 05:13:29 +0400
commitd999f7e023c2c55f30667d368479037bd18d5a23 (patch)
tree459ed4161557c947671bdf368b46abe5bffbb450 /hw/sb16.c
parent03dfe9f871871921c03c3c65ff69c68759186994 (diff)
Restore consistent formatting of audio devices
Diffstat (limited to 'hw/sb16.c')
-rw-r--r--hw/sb16.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/sb16.c b/hw/sb16.c
index 218c0bac9d..2506d982f2 100644
--- a/hw/sb16.c
+++ b/hw/sb16.c
@@ -1066,14 +1066,14 @@ static void reset_mixer (SB16State *s)
}
}
-static IO_WRITE_PROTO(mixer_write_indexb)
+static IO_WRITE_PROTO (mixer_write_indexb)
{
SB16State *s = opaque;
(void) nport;
s->mixer_nreg = val;
}
-static IO_WRITE_PROTO(mixer_write_datab)
+static IO_WRITE_PROTO (mixer_write_datab)
{
SB16State *s = opaque;
@@ -1129,13 +1129,13 @@ static IO_WRITE_PROTO(mixer_write_datab)
s->mixer_regs[s->mixer_nreg] = val;
}
-static IO_WRITE_PROTO(mixer_write_indexw)
+static IO_WRITE_PROTO (mixer_write_indexw)
{
mixer_write_indexb (opaque, nport, val & 0xff);
mixer_write_datab (opaque, nport, (val >> 8) & 0xff);
}
-static IO_READ_PROTO(mixer_read)
+static IO_READ_PROTO (mixer_read)
{
SB16State *s = opaque;