diff options
| author | Simon Glass <[email protected]> | 2024-09-29 19:49:47 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-11 11:44:48 -0600 |
| commit | dac3ce976a9b06be5aadbd857c4b64a8c521c6d4 (patch) | |
| tree | c6990967a19a9ae6112711010086b246be590880 /board/lg | |
| parent | bef9fdbed2e525ce9264d2ae2fbcb37db7472052 (diff) | |
board: Use CONFIG_XPL_BUILD instead of CONFIG_SPL_BUILD
Use the new symbol to refer to any 'SPL' build, including TPL and VPL
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'board/lg')
| -rw-r--r-- | board/lg/sniper/sniper.c | 2 | ||||
| -rw-r--r-- | board/lg/x3-t30/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/lg/sniper/sniper.c b/board/lg/sniper/sniper.c index 9d0959f294e..d4db32ee69b 100644 --- a/board/lg/sniper/sniper.c +++ b/board/lg/sniper/sniper.c @@ -54,7 +54,7 @@ void set_muxconf_regs(void) MUX_SNIPER(); } -#ifdef CONFIG_SPL_BUILD +#ifdef CONFIG_XPL_BUILD void get_board_mem_timings(struct board_sdrc_timings *timings) { timings->mcfg = HYNIX_V_MCFG_200(256 << 20); diff --git a/board/lg/x3-t30/Makefile b/board/lg/x3-t30/Makefile index 3eeb132f3c6..fb2527f9ee8 100644 --- a/board/lg/x3-t30/Makefile +++ b/board/lg/x3-t30/Makefile @@ -6,6 +6,6 @@ # (C) Copyright 2021 # Svyatoslav Ryhel <[email protected]> -obj-$(CONFIG_SPL_BUILD) += x3-t30-spl.o +obj-$(CONFIG_XPL_BUILD) += x3-t30-spl.o obj-y += x3-t30.o |
