git: 3a7365acc813 - main - ess_probe: eliminate write only variable r
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 05 Apr 2022 04:32:33 UTC
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=3a7365acc813173c02c4346044615a18e29b71ac commit 3a7365acc813173c02c4346044615a18e29b71ac Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2022-04-05 02:13:56 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2022-04-05 04:29:59 +0000 ess_probe: eliminate write only variable r Sponsored by: Netflix --- sys/dev/sound/isa/ess.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/sound/isa/ess.c b/sys/dev/sound/isa/ess.c index 626f8b356537..b982b051fbaf 100644 --- a/sys/dev/sound/isa/ess.c +++ b/sys/dev/sound/isa/ess.c @@ -788,14 +788,14 @@ MIXER_DECLARE(essmixer); static int ess_probe(device_t dev) { - uintptr_t func, ver, r, f; + uintptr_t func, ver, f; /* The parent device has already been probed. */ - r = BUS_READ_IVAR(device_get_parent(dev), dev, 0, &func); + BUS_READ_IVAR(device_get_parent(dev), dev, 0, &func); if (func != SCF_PCM) return (ENXIO); - r = BUS_READ_IVAR(device_get_parent(dev), dev, 1, &ver); + BUS_READ_IVAR(device_get_parent(dev), dev, 1, &ver); f = (ver & 0xffff0000) >> 16; if (!(f & BD_F_ESS)) return (ENXIO);