diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2020-04-03 16:27:17 +0300 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2020-04-19 18:56:33 +0300 |
commit | 903b6a07d95b28d06b6b2d1bd0fabd1a83c93aa6 (patch) | |
tree | 3afb5f54807eff7481c1b1c117f4ba705e9ce738 /drivers/iio/adc/xilinx-xadc-core.c | |
parent | a630117f2553adde1ad31bb9ab647020a1a75f5e (diff) | |
download | linux-903b6a07d95b28d06b6b2d1bd0fabd1a83c93aa6.tar.xz |
iio: xilinx-xadc: Fix typo
Fix a typo. 'at the a time' -> 'at a time'.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/adc/xilinx-xadc-core.c')
-rw-r--r-- | drivers/iio/adc/xilinx-xadc-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/xilinx-xadc-core.c b/drivers/iio/adc/xilinx-xadc-core.c index 2d6505a66511..9897d758cf88 100644 --- a/drivers/iio/adc/xilinx-xadc-core.c +++ b/drivers/iio/adc/xilinx-xadc-core.c @@ -653,7 +653,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; |