git: fdc24dade710 - stable/12 - usb_audio: Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Thu, 11 Nov 2021 16:36:41 UTC
The branch stable/12 has been updated by gbe (doc committer):

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

commit fdc24dade71027ec0b3065b4b15bc496a20deb6d
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2021-11-07 13:04:26 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2021-11-11 16:36:32 +0000

    usb_audio: Fix a typo in a source code comment
    
    - s/maxium/maximum/
    
    (cherry picked from commit 3d6ed119e3fe123b7e18adf8672c45ab81068527)
---
 sys/dev/sound/usb/uaudio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/sound/usb/uaudio.c b/sys/dev/sound/usb/uaudio.c
index e2e86fe5df63..221f4d3d1bd7 100644
--- a/sys/dev/sound/usb/uaudio.c
+++ b/sys/dev/sound/usb/uaudio.c
@@ -1592,7 +1592,7 @@ uaudio20_check_rate(struct usb_device *udev, uint8_t iface_no,
 {
 	struct usb_device_request req;
 	usb_error_t error;
-#define	UAUDIO20_MAX_RATES 32	/* we support at maxium 32 rates */
+#define	UAUDIO20_MAX_RATES 32	/* we support at maximum 32 rates */
 	uint8_t data[2 + UAUDIO20_MAX_RATES * 12];
 	uint16_t actlen;
 	uint16_t rates;