Date: Thu, 2 Feb 2023 09:02:39 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 35f4cc4354c5 - stable/12 - umcs(4): Fix a typo in a kernel message Message-ID: <202302020902.31292dwN091389@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=35f4cc4354c56ae34bf382061db6df0c1b332e1b commit 35f4cc4354c56ae34bf382061db6df0c1b332e1b Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2023-01-28 14:45:52 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2023-02-02 09:02:28 +0000 umcs(4): Fix a typo in a kernel message - s/confguration/configuration/ - s/nornal/normal/ Obtained from: NetBSD (cherry picked from commit ee27834d740df50b7e5834a2075b94ae3c15d81a) --- 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 bcff8190344d..5b1add0f55fe 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. * */ @@ -347,7 +347,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?202302020902.31292dwN091389>