Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Jan 2023 14:46:28 GMT
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: ee27834d740d - main - umcs(4): Fix a typo in a kernel message
Message-ID:  <202301281446.30SEkSND079962@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by gbe (doc committer):

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

commit ee27834d740df50b7e5834a2075b94ae3c15d81a
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2023-01-28 14:45:52 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2023-01-28 14:45:52 +0000

    umcs(4): Fix a typo in a kernel message
    
    - s/confguration/configuration/
    - s/nornal/normal/
    
    Obtained from:  NetBSD
    MFC after:      5 days
---
 sys/dev/usb/serial/umcs.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/usb/serial/umcs.c b/sys/dev/usb/serial/umcs.c
index a643aa85fa3d..875f004b6700 100644
--- a/sys/dev/usb/serial/umcs.c
+++ b/sys/dev/usb/serial/umcs.c
@@ -35,7 +35,7 @@
  * http://www.moschip.com.  The datasheets don't contain full
  * programming information for the chip.
  *
- * It is nornal to have only two enabled ports in devices, based on
+ * It is normal to have only two enabled ports in devices, based on
  * quad-port mos7840.
  *
  */
@@ -345,7 +345,7 @@ umcs7840_attach(device_t dev)
 	}
 	device_printf(dev, "Chip mcs%04x, found %d active ports\n", uaa->info.idProduct, sc->sc_numports);
 	if (!umcs7840_get_reg_sync(sc, MCS7840_DEV_REG_MODE, &data)) {
-		device_printf(dev, "On-die confguration: RST: active %s, HRD: %s, PLL: %s, POR: %s, Ports: %s, EEPROM write %s, IrDA is %savailable\n",
+		device_printf(dev, "On-die configuration: RST: active %s, HRD: %s, PLL: %s, POR: %s, Ports: %s, EEPROM write %s, IrDA is %savailable\n",
 		    (data & MCS7840_DEV_MODE_RESET) ? "low" : "high",
 		    (data & MCS7840_DEV_MODE_SER_PRSNT) ? "yes" : "no",
 		    (data & MCS7840_DEV_MODE_PLLBYPASS) ? "bypassed" : "avail",



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202301281446.30SEkSND079962>