mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
arm: mvebu: create generic 88F6820 config option
88F6820 is a specific Armada-38x chip that is used on the DB-88F6820-GP board. Rather than having DB_88F6820_GP and TARGET_DB_88F6820_GP which selects the former. Rename DB_88F6820_GP to 88F6820 so that other boards using the 88F6820 can be added. Stefan: Change 88F6820 for clearfog as well. Signed-off-by: Chris Packham <judge.packham@gmail.com> Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
9ed00b072b
commit
53d601fdcd
2 changed files with 4 additions and 4 deletions
|
@ -21,7 +21,7 @@ config MV78460
|
||||||
bool
|
bool
|
||||||
select ARMADA_XP
|
select ARMADA_XP
|
||||||
|
|
||||||
config DB_88F6820_GP
|
config 88F6820
|
||||||
bool
|
bool
|
||||||
select ARMADA_38X
|
select ARMADA_38X
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ choice
|
||||||
|
|
||||||
config TARGET_CLEARFOG
|
config TARGET_CLEARFOG
|
||||||
bool "Support ClearFog"
|
bool "Support ClearFog"
|
||||||
select DB_88F6820_GP
|
select 88F6820
|
||||||
|
|
||||||
config TARGET_DB_88F6720
|
config TARGET_DB_88F6720
|
||||||
bool "Support DB-88F6720 Armada 375"
|
bool "Support DB-88F6720 Armada 375"
|
||||||
|
@ -39,7 +39,7 @@ config TARGET_DB_88F6720
|
||||||
|
|
||||||
config TARGET_DB_88F6820_GP
|
config TARGET_DB_88F6820_GP
|
||||||
bool "Support DB-88F6820-GP"
|
bool "Support DB-88F6820-GP"
|
||||||
select DB_88F6820_GP
|
select 88F6820
|
||||||
|
|
||||||
config TARGET_DB_MV784MP_GP
|
config TARGET_DB_MV784MP_GP
|
||||||
bool "Support db-mv784mp-gp"
|
bool "Support db-mv784mp-gp"
|
||||||
|
|
|
@ -45,7 +45,7 @@ u32 g_dev_id = -1;
|
||||||
|
|
||||||
u32 mv_board_id_get(void)
|
u32 mv_board_id_get(void)
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_DB_88F6820_GP)
|
#if defined(CONFIG_TARGET_DB_88F6820_GP)
|
||||||
return DB_GP_68XX_ID;
|
return DB_GP_68XX_ID;
|
||||||
#else
|
#else
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue