kconfig: rename non-Kconfig CONFIG_* variables

CONFIG_* usually come from Kconfig, rename variables that are locally
defined to avoid confusion about where they are set.

Change-Id: I83b8459913c5deb68dc1b9f5386b8934363a6d1f
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-04-10 17:29:02 -04:00 committed by Anas Nashif
commit fdd045b52b
4 changed files with 9 additions and 9 deletions

View file

@ -451,6 +451,6 @@ void sys_clock_disable(void)
/* disable interrupt in the interrupt controller */
irq_disable(CONFIG_ARCV2_TIMER0_INT_LVL);
irq_disable(ARCV2_TIMER0_INT_LVL);
}
#endif /* CONFIG_SYSTEM_CLOCK_DISABLE */