diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2021-10-15 11:15:01 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2021-10-21 11:24:00 +0300 |
commit | 789e5ebcc61b72a71717b02b62e6c6f10fdbb722 (patch) | |
tree | 3aea3a75ec5b89c80b9006f73d2af08deb43662a /include/linux/mfd | |
parent | b61a9d32d2d7339aaa59c50f6e33e8a79f7944e7 (diff) | |
download | linux-789e5ebcc61b72a71717b02b62e6c6f10fdbb722.tar.xz |
iio: adc: ti_am335x_adc: Add a unit to the timeout delay
The lack of unit in the macro name kind of tricked me when I was
troubleshooting an issue. Physical constants should always get a unit.
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20211015081506.933180-44-miquel.raynal@bootlin.com
Diffstat (limited to 'include/linux/mfd')
-rw-r--r-- | include/linux/mfd/ti_am335x_tscadc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mfd/ti_am335x_tscadc.h b/include/linux/mfd/ti_am335x_tscadc.h index 5225e3fc194d..ba13e043d910 100644 --- a/include/linux/mfd/ti_am335x_tscadc.h +++ b/include/linux/mfd/ti_am335x_tscadc.h @@ -141,7 +141,7 @@ * * max processing time: 266431 * 308ns = 83ms(approx) */ -#define IDLE_TIMEOUT 83 /* milliseconds */ +#define IDLE_TIMEOUT_MS 83 /* milliseconds */ #define TSCADC_CELLS 2 |