The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=dc8d33b3682b624789210c4776a0fca9525151e1
commit dc8d33b3682b624789210c4776a0fca9525151e1 Author: Gordon Bergling <[email protected]> AuthorDate: 2022-04-02 08:30:52 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2022-04-02 08:30:52 +0000 snd_csa(4): Fix a few common typos in source code comments - s/hander/handler/ MFC after: 3 days --- 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)
