diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-22 09:33:48 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-02 17:45:57 -0500 |
commit | 1be3077e714bfdb8fb7a6cfb78fec1e71111d57c (patch) | |
tree | 10c7b22fd57b9c2ef26d617167a3b4696eb937b3 | |
parent | 714c8f22222629db274e4c67cee510622f3adfab (diff) | |
download | u-boot-1be3077e714bfdb8fb7a6cfb78fec1e71111d57c.tar.gz u-boot-1be3077e714bfdb8fb7a6cfb78fec1e71111d57c.tar.bz2 u-boot-1be3077e714bfdb8fb7a6cfb78fec1e71111d57c.zip |
Correct SPL uses of DISPLAY_AER_FULL
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_DISPLAY_AER_FULL defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | drivers/sysreset/sysreset_mpc83xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/sysreset/sysreset_mpc83xx.c b/drivers/sysreset/sysreset_mpc83xx.c index c9a0326659..ca48328f7b 100644 --- a/drivers/sysreset/sysreset_mpc83xx.c +++ b/drivers/sysreset/sysreset_mpc83xx.c @@ -107,7 +107,7 @@ static int print_83xx_arb_event(bool force, char *buf, int size) if (!force && !gd->arch.arbiter_event_address) return 0; - if (CONFIG_IS_ENABLED(DISPLAY_AER_FULL)) { + if (IS_ENABLED(CONFIG_DISPLAY_AER_FULL)) { res = snprintf(buf, size, "Arbiter Event Status:\n" " %s: 0x%08lX\n" @@ -184,7 +184,7 @@ static int mpc83xx_sysreset_get_status(struct udevice *dev, char *buf, int size) * TODO(mario.six@gdsys.cc): Move this into a dedicated * arbiter driver */ - if (CONFIG_IS_ENABLED(DISPLAY_AER_FULL) || + if (IS_ENABLED(CONFIG_DISPLAY_AER_FULL) || IS_ENABLED(CONFIG_DISPLAY_AER_BRIEF)) { /* * If there was a bus monitor reset event, we force the arbiter |