Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 18 Oct 2024 08:45:01 GMT
From:      Christos Margiolis <christos@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: f3092614bcae - main - sound: Remove useless newspd check in sysctl_dev_pcm_vchanrate()
Message-ID:  <202410180845.49I8j1ZA088193@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by christos:

URL: https://cgit.FreeBSD.org/src/commit/?id=f3092614bcae949332a8f21f7b78ba68b3ee5899

commit f3092614bcae949332a8f21f7b78ba68b3ee5899
Author:     Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2024-10-18 08:40:33 +0000
Commit:     Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2024-10-18 08:40:33 +0000

    sound: Remove useless newspd check in sysctl_dev_pcm_vchanrate()
    
    feeder_rate_min functions as the lower boundary.
    
    Sponsored by:   The FreeBSD Foundation
    MFC after:      2 days
    Reviewed by:    dev_submerge.ch, markj, emaste
    Differential Revision:  https://reviews.freebsd.org/D46834
---
 sys/dev/sound/pcm/vchan.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys/dev/sound/pcm/vchan.c b/sys/dev/sound/pcm/vchan.c
index 9046c144b41b..8580eb679f35 100644
--- a/sys/dev/sound/pcm/vchan.c
+++ b/sys/dev/sound/pcm/vchan.c
@@ -508,8 +508,7 @@ sysctl_dev_pcm_vchanrate(SYSCTL_HANDLER_ARGS)
 		return (ret);
 	}
 
-	if (newspd < 1 || newspd < feeder_rate_min ||
-	    newspd > feeder_rate_max) {
+	if (newspd < feeder_rate_min || newspd > feeder_rate_max) {
 		PCM_RELEASE_QUICK(d);
 		return (EINVAL);
 	}



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