diff options
Diffstat (limited to 'sys/dev/sound/isa/sbc.c')
-rw-r--r-- | sys/dev/sound/isa/sbc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/sound/isa/sbc.c b/sys/dev/sound/isa/sbc.c index d57ed7e..01f451c 100644 --- a/sys/dev/sound/isa/sbc.c +++ b/sys/dev/sound/isa/sbc.c @@ -146,9 +146,9 @@ sb_rd(struct resource *io, int reg) static void sb_wr(struct resource *io, int reg, u_int8_t val) { - return bus_space_write_1(rman_get_bustag(io), - rman_get_bushandle(io), - reg, val); + bus_space_write_1(rman_get_bustag(io), + rman_get_bushandle(io), + reg, val); } static int |