Edward O'Callaghan has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/48106 )
Change subject: flashrom.c: Correct "raiden_debug_spi" drv name ......................................................................
flashrom.c: Correct "raiden_debug_spi" drv name
Unfortantly raiden_debug was upstreamed with a slightly incorrect name of "raiden_debug" where-as 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 --- M flashrom.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/06/48106/1
diff --git a/flashrom.c b/flashrom.c index 630e7ea..7f5f2a8 100644 --- a/flashrom.c +++ b/flashrom.c @@ -147,7 +147,7 @@
#if CONFIG_RAIDEN_DEBUG_SPI == 1 { - .name = "raiden_debug", + .name = "raiden_debug_spi", .type = USB, .devs.dev = devs_raiden, .init = raiden_debug_spi_init,