git: a5ce25121b7d - stable/12 - ti(4): Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 09 Oct 2021 03:02:51 UTC
The branch stable/12 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=a5ce25121b7df29e34914bfa3c5bc7e58d8fb86f commit a5ce25121b7df29e34914bfa3c5bc7e58d8fb86f Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2021-10-02 08:51:29 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2021-10-09 03:02:33 +0000 ti(4): Fix a typo in an error message - s/chanels/channels/ (cherry picked from commit 42dfad2ef12755d27e0e34656a2624f0dac2c502) --- sys/arm/ti/ti_adc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm/ti/ti_adc.c b/sys/arm/ti/ti_adc.c index 011b9daeb3cc..907ba3d460fa 100644 --- a/sys/arm/ti/ti_adc.c +++ b/sys/arm/ti/ti_adc.c @@ -807,7 +807,7 @@ ti_adc_attach(device_t dev) /* Sanity check FDT data */ if (sc->sc_tsc_wires + sc->sc_adc_nchannels > TI_ADC_NPINS) { - device_printf(dev, "total number of chanels (%d) is larger than %d\n", + device_printf(dev, "total number of channels (%d) is larger than %d\n", sc->sc_tsc_wires + sc->sc_adc_nchannels, TI_ADC_NPINS); return (ENXIO); }