Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Mar 2025 17:55:20 GMT
From:      Vladimir Kondratyev <wulf@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 02fb6b1162d9 - main - wsp: Fix typo in function name.
Message-ID:  <202503071755.527HtKfC083514@gitrepo.freebsd.org>

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

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

commit 02fb6b1162d94962acde5815aa7c315191c3ec03
Author:     Joshua Rogers <Joshua@Joshua.Hu>
AuthorDate: 2025-03-07 17:53:34 +0000
Commit:     Vladimir Kondratyev <wulf@FreeBSD.org>
CommitDate: 2025-03-07 17:53:34 +0000

    wsp: Fix typo in function name.
    
    Signed-off-by: Joshua Rogers <Joshua@Joshua.Hu>
---
 sys/dev/usb/input/wsp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/usb/input/wsp.c b/sys/dev/usb/input/wsp.c
index d74ba1da32b1..55b9aadfce86 100644
--- a/sys/dev/usb/input/wsp.c
+++ b/sys/dev/usb/input/wsp.c
@@ -120,7 +120,7 @@ static struct wsp_tuning {
 };
 
 static void
-wsp_runing_rangecheck(struct wsp_tuning *ptun)
+wsp_running_rangecheck(struct wsp_tuning *ptun)
 {
 	WSP_CLAMP(ptun->scale_factor, 1, 63);
 	WSP_CLAMP(ptun->z_factor, 1, 63);
@@ -958,7 +958,7 @@ wsp_intr_callback(struct usb_xfer *xfer, usb_error_t error)
 	int slot = 0;
 #endif
 
-	wsp_runing_rangecheck(&tun);
+	wsp_running_rangecheck(&tun);
 
 	if (sc->dz_count == 0)
 		sc->dz_count = WSP_DZ_MAX_COUNT;



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