diff options
author | Stefan Mavrodiev <stefan@olimex.com> | 2018-02-02 15:53:38 +0200 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2018-03-13 22:36:33 +0530 |
commit | b30c4190407be9807f6b5fdcfd3a3d983a961dee (patch) | |
tree | 6dda77958901da0940c2fd61c596a2c9dcc92c94 /configs/devkit3250_defconfig | |
parent | 2d53018a0ef268ba73aebe2441f1fd7c65533d78 (diff) | |
download | u-boot-b30c4190407be9807f6b5fdcfd3a3d983a961dee.tar.gz |
Move CONFIG_PHY_ADDR to Kconfig
CONFIG_PHY_ADDR is used for old-style configuration. This makes
impossible changing the PHY address, if multiple boards share a same
config header file (for example include/configs/sunxi-common.h).
Moving this to Kconfig helps overcoming this issue. It's defined
as entry inside PHYLIB section.
After the implemention, moveconfig was run. The issues are:
- edb9315a - CONFIG_PHYLIB is not enabled. Entry is
deleted.
- ds414 - CONFIG_PHYLIB is in incompatible format:
{ 0x1, 0x0 }. This entry is also deleted.
- devkit3250 - The PHY_ADDR is in hex format (0x1F).
Manually CONFIG_PHY_ADDR=31 is added in
the defconfig.
After the changes the suspicious defconfigs passes building.
Signed-off-by: Stefan Mavrodiev <stefan@olimex.com>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
[jagan: rebased on master]
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Reviewed-by: Jagan Teki <jagan@openedev.com>
Diffstat (limited to 'configs/devkit3250_defconfig')
-rw-r--r-- | configs/devkit3250_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/devkit3250_defconfig b/configs/devkit3250_defconfig index fcc80b2027..e1a9b4982a 100644 --- a/configs/devkit3250_defconfig +++ b/configs/devkit3250_defconfig @@ -36,6 +36,7 @@ CONFIG_MTD_NOR_FLASH=y CONFIG_NAND=y CONFIG_SPL_NAND_SIMPLE=y CONFIG_PHYLIB=y +CONFIG_PHY_ADDR=31 CONFIG_DM_SERIAL=y CONFIG_SYS_NS16550=y CONFIG_LPC32XX_SSP=y |