diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2021-10-15 11:14:48 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2021-10-21 11:19:07 +0300 |
commit | c3e36b5d069241f3cbc0e647cf297c5a329cd7a6 (patch) | |
tree | 71242969f6996906004f0bf303e366856651b96b /include/linux/mfd | |
parent | 0fd12262613116a38fd76aefa396e9bc116fbfe2 (diff) | |
download | linux-c3e36b5d069241f3cbc0e647cf297c5a329cd7a6.tar.xz |
mfd: ti_am335x_tscadc: Rename the subsystem enable macro
This bit is common to all devices (ADC, Touchscreen, Magnetic reader) so
make it clear that it can be used from any location by operating a
mechanical rename:
s/CNTRLREG_TSCSSENB/CNTRLREG_SSENB/
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-31-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 51d987080cd3..860289ae8516 100644 --- a/include/linux/mfd/ti_am335x_tscadc.h +++ b/include/linux/mfd/ti_am335x_tscadc.h @@ -96,7 +96,7 @@ #define CHARGEDLY_OPENDLY CHARGEDLY_OPEN(0x400) /* Control register */ -#define CNTRLREG_TSCSSENB BIT(0) +#define CNTRLREG_SSENB BIT(0) #define CNTRLREG_STEPID BIT(1) #define CNTRLREG_STEPCONFIGWRT BIT(2) #define CNTRLREG_POWERDOWN BIT(4) |