Message ID | 20200403132717.24682-5-lars@metafoo.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/5] iio: xilinx-xadc: Fix ADC-B powerdown | expand |
On Fri, 3 Apr 2020 15:27:17 +0200 Lars-Peter Clausen <lars@metafoo.de> wrote: > Fix a typo. 'at the a time' -> 'at a time'. > > Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Independent of the rest of the series so I applied this one via the slow route. Mainly so we can forget about it if the others are going via the fixes route. Applied to the togreg branch of iio.git and pushed out as testing. Thanks, Jonathan > --- > drivers/iio/adc/xilinx-xadc-core.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/adc/xilinx-xadc-core.c b/drivers/iio/adc/xilinx-xadc-core.c > index c724b8788007..d7fecab9252e 100644 > --- a/drivers/iio/adc/xilinx-xadc-core.c > +++ b/drivers/iio/adc/xilinx-xadc-core.c > @@ -663,7 +663,7 @@ static int xadc_trigger_set_state(struct iio_trigger *trigger, bool state) > mutex_lock(&xadc->mutex); > > if (state) { > - /* Only one of the two triggers can be active at the a time. */ > + /* Only one of the two triggers can be active at a time. */ > if (xadc->trigger != NULL) { > ret = -EBUSY; > goto err_out;
diff --git a/drivers/iio/adc/xilinx-xadc-core.c b/drivers/iio/adc/xilinx-xadc-core.c index c724b8788007..d7fecab9252e 100644 --- a/drivers/iio/adc/xilinx-xadc-core.c +++ b/drivers/iio/adc/xilinx-xadc-core.c @@ -663,7 +663,7 @@ static int xadc_trigger_set_state(struct iio_trigger *trigger, bool state) mutex_lock(&xadc->mutex); if (state) { - /* Only one of the two triggers can be active at the a time. */ + /* Only one of the two triggers can be active at a time. */ if (xadc->trigger != NULL) { ret = -EBUSY; goto err_out;
Fix a typo. 'at the a time' -> 'at a time'. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> --- drivers/iio/adc/xilinx-xadc-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)