git: 3d28f00904dc - stable/13 - umcs(4): Fix a typo in a kernel message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 02 Feb 2023 09:02:16 UTC
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=3d28f00904dcaf6ba06fc7b6de5a60db6101dc83 commit 3d28f00904dcaf6ba06fc7b6de5a60db6101dc83 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:01 +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 e3c8f1a764fb..06480509c576 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",