diff options
Diffstat (limited to 'sys/dev/sound/isa/uartsio.c')
-rw-r--r-- | sys/dev/sound/isa/uartsio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/isa/uartsio.c b/sys/dev/sound/isa/uartsio.c index 4170aeb..5353b87 100644 --- a/sys/dev/sound/isa/uartsio.c +++ b/sys/dev/sound/isa/uartsio.c @@ -479,7 +479,7 @@ uartsio_readport(sc_p scp, int off) static void uartsio_writeport(sc_p scp, int off, u_int8_t value) { - return bus_space_write_1(rman_get_bustag(scp->io), rman_get_bushandle(scp->io), off, value); + bus_space_write_1(rman_get_bustag(scp->io), rman_get_bushandle(scp->io), off, value); } /* Allocates resources other than IO ports. */ |