git: 9ea1c206121f - stable/13 - snd_csa(4): Fix a few common typos in source code comments

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sat, 09 Apr 2022 06:14:54 UTC
The branch stable/13 has been updated by gbe (doc committer):

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

commit 9ea1c206121fe9f4b40598f5388d59fb8d02c07a
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-04-02 08:30:52 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-04-09 06:10:52 +0000

    snd_csa(4): Fix a few common typos in source code comments
    
    - s/hander/handler/
    
    (cherry picked from commit dc8d33b3682b624789210c4776a0fca9525151e1)
---
 sys/dev/sound/pci/csa.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/sound/pci/csa.c b/sys/dev/sound/pci/csa.c
index e3f611ed2949..61f4d750df2d 100644
--- a/sys/dev/sound/pci/csa.c
+++ b/sys/dev/sound/pci/csa.c
@@ -468,7 +468,7 @@ csa_setup_intr(device_t bus, device_t child,
 
 	/*
 	 * Look at the function code of the child to determine
-	 * the appropriate hander for it.
+	 * the appropriate handler for it.
 	 */
 	func = device_get_ivars(child);
 	if (func == NULL || irq != resp->irq)
@@ -508,7 +508,7 @@ csa_teardown_intr(device_t bus, device_t child,
 
 	/*
 	 * Look at the function code of the child to determine
-	 * the appropriate hander for it.
+	 * the appropriate handler for it.
 	 */
 	func = device_get_ivars(child);
 	if (func == NULL || irq != resp->irq || cookie != scp)