mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-24 04:34:22 +08:00
exynos: mmu: use CONFIG_IS_ENABLED
to fix following checkpatch warnings. Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> Cc: Dzmitry Sankouski <dsankouski@gmail.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
This commit is contained in:
parent
2b77d9a3ee
commit
a80f582688
@ -7,7 +7,8 @@
|
||||
#include <common.h>
|
||||
#include <asm/armv8/mmu.h>
|
||||
|
||||
#ifdef CONFIG_EXYNOS7420
|
||||
#if CONFIG_IS_ENABLED(EXYNOS7420)
|
||||
|
||||
static struct mm_region exynos7420_mem_map[] = {
|
||||
{
|
||||
.virt = 0x10000000UL,
|
||||
@ -28,9 +29,9 @@ static struct mm_region exynos7420_mem_map[] = {
|
||||
};
|
||||
|
||||
struct mm_region *mem_map = exynos7420_mem_map;
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_EXYNOS7870
|
||||
#elif CONFIG_IS_ENABLED(EXYNOS7870)
|
||||
|
||||
static struct mm_region exynos7870_mem_map[] = {
|
||||
{
|
||||
.virt = 0x10000000UL,
|
||||
@ -61,9 +62,9 @@ static struct mm_region exynos7870_mem_map[] = {
|
||||
};
|
||||
|
||||
struct mm_region *mem_map = exynos7870_mem_map;
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_EXYNOS7880
|
||||
#elif CONFIG_IS_ENABLED(EXYNOS7880)
|
||||
|
||||
static struct mm_region exynos7880_mem_map[] = {
|
||||
{
|
||||
.virt = 0x10000000UL,
|
||||
|
Loading…
Reference in New Issue
Block a user