1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 22:21:16 +02:00

raiden_debug: Rename with '_DEBUG_SPI' suffix

Unfortantly raiden_debug was upstreamed with a misnaming
of the CONFIG_ make param that introduces unnecessary divergence.
Rename to 'CONFIG_RAIDEN_DEBUG_SPI' as-is downstream.

Change-Id: I07c03647c329286bb223e4dae4665704e508db2c
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/48105
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sam McNally <sammc@google.com>
This commit is contained in:
Edward O'Callaghan
2020-11-27 12:54:31 +11:00
committed by Edward O'Callaghan
parent 0386aa1781
commit 732f2eeddb
4 changed files with 11 additions and 11 deletions

View File

@ -46,7 +46,7 @@ enum programmer {
#if CONFIG_GFXNVIDIA == 1
PROGRAMMER_GFXNVIDIA,
#endif
#if CONFIG_RAIDEN == 1
#if CONFIG_RAIDEN_DEBUG_SPI == 1
PROGRAMMER_RAIDEN,
#endif
#if CONFIG_DRKAISER == 1
@ -417,7 +417,7 @@ extern const struct dev_entry gfx_nvidia[];
#endif
/* raiden_debug_spi.c */
#if CONFIG_RAIDEN == 1
#if CONFIG_RAIDEN_DEBUG_SPI == 1
int raiden_debug_spi_init(void);
extern const struct dev_entry devs_raiden[];
#endif