mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
solidrun: mx6cuboxi: use CONFIG_IS_ENABLED(SATA) instead of ifdef CONFIG_SATA
Prepare for linking setup_sata only when CONFIG_SATA/CONFIG_SPL_SATA is defined. Signed-off-by: Troy Kisky <troykiskyboundary@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e7b03ee0fc
commit
ff286fbc51
1 changed files with 2 additions and 3 deletions
|
@ -275,9 +275,8 @@ int board_early_init_f(void)
|
|||
{
|
||||
setup_iomux_uart();
|
||||
|
||||
#ifdef CONFIG_SATA
|
||||
setup_sata();
|
||||
#endif
|
||||
if (CONFIG_IS_ENABLED(SATA))
|
||||
setup_sata();
|
||||
setup_fec();
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue