diff options
| author | Troy Kisky <[email protected]> | 2023-03-13 14:31:41 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-05-10 16:45:42 -0400 |
| commit | 32af1c0b3f8add3f5bda08234d064ad93c7f4bf5 (patch) | |
| tree | 9203c4af9a97d93ff0b07a0baca7d5ac3bb9b2f0 | |
| parent | ff286fbc5153d0a15465faf0a8f1cc6f80dc33a8 (diff) | |
wandboard: 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 <[email protected]>
| -rw-r--r-- | board/wandboard/wandboard.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c index da995dd0f58..48914450a29 100644 --- 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; } |
