diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-01-25 20:40:21 +0100 |
---|---|---|
committer | Priyanka Jain <priyanka.jain@nxp.com> | 2020-02-04 16:20:25 +0530 |
commit | d9618e980430f3f7b84dfd5bb3004285ed47e5ba (patch) | |
tree | 269cf173f778716eb3e54594fdac3702431f22c8 /board/freescale/ls1012ardb | |
parent | 8526a58aa5c89ac36578d8e5f2e18ebdd11622c6 (diff) | |
download | u-boot-d9618e980430f3f7b84dfd5bb3004285ed47e5ba.tar.gz u-boot-d9618e980430f3f7b84dfd5bb3004285ed47e5ba.tar.xz u-boot-d9618e980430f3f7b84dfd5bb3004285ed47e5ba.zip |
board: ls1012ardb: do not use imply CONFIG_
Inside Kconfig we must not use the CONFIG_ prefix with the imply statement.
Fixes: 28e3c39e535b ("board: freescale: ls1012a2g5rdb: enable network
support on ls1012a2g5rdb")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'board/freescale/ls1012ardb')
-rw-r--r-- | board/freescale/ls1012ardb/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/ls1012ardb/Kconfig b/board/freescale/ls1012ardb/Kconfig index 51efd0fa37..639353a94b 100644 --- a/board/freescale/ls1012ardb/Kconfig +++ b/board/freescale/ls1012ardb/Kconfig @@ -82,8 +82,8 @@ if FSL_PFE config BOARD_SPECIFIC_OPTIONS # dummy def_bool y select PHYLIB - imply CONFIG_PHYLIB_10G - imply CONFIG_PHY_AQUANTIA + imply PHYLIB_10G + imply PHY_AQUANTIA config SYS_LS_PFE_FW_ADDR hex "Flash address of PFE firmware" |