ti(4): Fix a typo in an error message

- s/chanels/channels/

MFC after:	1 week
This commit is contained in:
Gordon Bergling 2021-10-02 10:51:29 +02:00
parent 957d9ba0c3
commit 42dfad2ef1

View File

@ -809,7 +809,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);
}