diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-04 10:13:23 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-23 10:14:51 -0500 |
commit | 1c3ba55798e3552739f06356aaeb18e66ec49a3c (patch) | |
tree | d60f363141e00166e5e51045183cde424eef6130 /board/samsung | |
parent | dd11fdc31fb82f63258c1970a6d8d22b8ffd3173 (diff) | |
download | u-boot-1c3ba55798e3552739f06356aaeb18e66ec49a3c.tar.gz u-boot-1c3ba55798e3552739f06356aaeb18e66ec49a3c.tar.bz2 u-boot-1c3ba55798e3552739f06356aaeb18e66ec49a3c.zip |
global: Migrate CONFIG_ODROID_REV_AIN to CFG
Perform a simple rename of CONFIG_ODROID_REV_AIN to CFG_ODROID_REV_AIN
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/samsung')
-rw-r--r-- | board/samsung/common/exynos5-dt-types.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/samsung/common/exynos5-dt-types.c b/board/samsung/common/exynos5-dt-types.c index 554fc91cc1..9294d36ba3 100644 --- a/board/samsung/common/exynos5-dt-types.c +++ b/board/samsung/common/exynos5-dt-types.c @@ -57,7 +57,7 @@ static int odroid_get_adc_val(unsigned int *adcval) unsigned int adcval_prev = 0; int ret, retries = 20; - ret = adc_channel_single_shot("adc@12D10000", CONFIG_ODROID_REV_AIN, + ret = adc_channel_single_shot("adc@12D10000", CFG_ODROID_REV_AIN, &adcval_prev); if (ret) return ret; @@ -66,7 +66,7 @@ static int odroid_get_adc_val(unsigned int *adcval) mdelay(5); ret = adc_channel_single_shot("adc@12D10000", - CONFIG_ODROID_REV_AIN, adcval); + CFG_ODROID_REV_AIN, adcval); if (ret) return ret; |