Module Name: src
Committed By: skrll
Date: Fri Feb 9 16:57:11 UTC 2024
Modified Files:
src/sys/dev/ic: dwc_mmc.c
Log Message:
Fix a typo in a comment
To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/dev/ic/dwc_mmc.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/ic/dwc_mmc.c
diff -u src/sys/dev/ic/dwc_mmc.c:1.29 src/sys/dev/ic/dwc_mmc.c:1.30
--- src/sys/dev/ic/dwc_mmc.c:1.29 Sun Jan 9 15:03:43 2022
+++ src/sys/dev/ic/dwc_mmc.c Fri Feb 9 16:57:11 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: dwc_mmc.c,v 1.29 2022/01/09 15:03:43 jmcneill Exp $ */
+/* $NetBSD: dwc_mmc.c,v 1.30 2024/02/09 16:57:11 skrll Exp $ */
/*-
* Copyright (c) 2014-2017 Jared McNeill <[email protected]>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dwc_mmc.c,v 1.29 2022/01/09 15:03:43 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dwc_mmc.c,v 1.30 2024/02/09 16:57:11 skrll Exp $");
#include <sys/param.h>
#include <sys/bus.h>
@@ -477,7 +477,7 @@ dwc_mmc_dma_prepare(struct dwc_mmc_softc
uint32_t val;
/*
- * If the command includs a dma map use it, otherwise we need to
+ * If the command includes a dma map use it, otherwise we need to
* bounce. This can happen for SDIO IO_RW_EXTENDED (CMD53) commands.
*/
if (cmd->c_dmamap) {