1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 23:22:37 +02:00

flashrom.c: Correct "raiden_debug_spi" drv name

Unfortunately raiden_debug was upstreamed with a slightly
incorrect name of "raiden_debug" whereas in ChromiumOS
it is known as "raiden_debug_spi" and so correct this to
align. This avoids confusion and divergence for a unified
future.

Change-Id: I0eca35863403c5d4adbe19b31801e8dfa072006f
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/48106
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sam McNally <sammc@google.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Edward O'Callaghan 2020-11-27 12:59:49 +11:00 committed by Edward O'Callaghan
parent 732f2eeddb
commit f95cc8f9f6
2 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ const struct programmer_entry programmer_table[] = {
#if CONFIG_RAIDEN_DEBUG_SPI == 1
{
.name = "raiden_debug",
.name = "raiden_debug_spi",
.type = USB,
.devs.dev = devs_raiden,
.init = raiden_debug_spi_init,

View File

@ -47,7 +47,7 @@ enum programmer {
PROGRAMMER_GFXNVIDIA,
#endif
#if CONFIG_RAIDEN_DEBUG_SPI == 1
PROGRAMMER_RAIDEN,
PROGRAMMER_RAIDEN_DEBUG_SPI,
#endif
#if CONFIG_DRKAISER == 1
PROGRAMMER_DRKAISER,