git: 113c2e8977bb - stable/13 - usb_audio: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 11 Nov 2021 16:26:32 UTC
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=113c2e8977bb5d593c20756e8f0f2650d5e20f3c commit 113c2e8977bb5d593c20756e8f0f2650d5e20f3c 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:26:19 +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 538e4180f6de..3a7d4189b9ef 100644 --- a/sys/dev/sound/usb/uaudio.c +++ b/sys/dev/sound/usb/uaudio.c @@ -1588,7 +1588,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;