Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Apr 2022 04:32:33 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 3a7365acc813 - main - ess_probe: eliminate write only variable r
Message-ID:  <202204050432.2354WXTX009158@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202204050432.2354WXTX009158>