diff options
author | semenu <semenu@FreeBSD.org> | 2002-12-18 22:53:24 +0000 |
---|---|---|
committer | semenu <semenu@FreeBSD.org> | 2002-12-18 22:53:24 +0000 |
commit | af97d007f0db44bbfc226fd95063219f5f53c404 (patch) | |
tree | 12f52f6bbabbd23a4c7d624b5a337479336c0a75 /sys/dev/sound/isa/uartsio.c | |
parent | 9a2c44c9d9f611680d0d308c63d0dfad245b1dc2 (diff) | |
download | FreeBSD-src-af97d007f0db44bbfc226fd95063219f5f53c404.zip FreeBSD-src-af97d007f0db44bbfc226fd95063219f5f53c404.tar.gz |
Do not return(foo()) in void function.
Submitted by: marius@alchemy.franken.de
MFC after: 3 days
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. */ |