git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff286fb
)
wandboard: use CONFIG_IS_ENABLED(SATA) instead of ifdef CONFIG_SATA
author
Troy Kisky
<troykiskyboundary@gmail.com>
Mon, 13 Mar 2023 21:31:41 +0000
(14:31 -0700)
committer
Tom Rini
<trini@konsulko.com>
Wed, 10 May 2023 20:45:42 +0000
(16:45 -0400)
Prepare for linking setup_sata only when CONFIG_SATA/CONFIG_SPL_SATA
is defined.
Signed-off-by: Troy Kisky <troykiskyboundary@gmail.com>
board/wandboard/wandboard.c
patch
|
blob
|
history
diff --git
a/board/wandboard/wandboard.c
b/board/wandboard/wandboard.c
index
da995dd
..
4891445
100644
(file)
--- a/
board/wandboard/wandboard.c
+++ b/
board/wandboard/wandboard.c
@@
-352,9
+352,8
@@
static void setup_display(void)
int board_early_init_f(void)
{
setup_iomux_uart();
-#ifdef CONFIG_SATA
- setup_sata();
-#endif
+ if (CONFIG_IS_ENABLED(SATA))
+ setup_sata();
return 0;
}