diff options
author | orion <orion@FreeBSD.org> | 2001-09-03 02:14:55 +0000 |
---|---|---|
committer | orion <orion@FreeBSD.org> | 2001-09-03 02:14:55 +0000 |
commit | f1a12fefd65f6c3558da75f09d7892aa9f3cce9d (patch) | |
tree | aeae2ac1c45333100d669a4654d8a22673bff0a2 /sys/dev/sound/pci/cs4281.c | |
parent | 693f6a6f4e80a5eba2566ffd4a9104e5a0d0a06b (diff) | |
download | FreeBSD-src-f1a12fefd65f6c3558da75f09d7892aa9f3cce9d.zip FreeBSD-src-f1a12fefd65f6c3558da75f09d7892aa9f3cce9d.tar.gz |
Return updated blocksize from setblocksize function.
Diffstat (limited to 'sys/dev/sound/pci/cs4281.c')
-rw-r--r-- | sys/dev/sound/pci/cs4281.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/cs4281.c b/sys/dev/sound/pci/cs4281.c index 3abaf45..45e0222 100644 --- a/sys/dev/sound/pci/cs4281.c +++ b/sys/dev/sound/pci/cs4281.c @@ -354,7 +354,7 @@ cs4281chan_setblocksize(kobj_t obj, void *data, u_int32_t blocksize) DEB(printf("cs4281chan_setblocksize: bufsz %d Setting %d\n", blocksize, ch->blksz)); - return blocksize; + return ch->blksz; } static int |