From 7e4968525d37d87e8b6f8b848e4f2f9696926237 Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Tue, 11 May 2021 17:38:14 +0200 Subject: programmer: Smoothen register_spi_master() API It was impossible to register a const struct spi_master that would point to dynamically allocated `data`. Fix that so that we won't have to create more mutable globals. Change-Id: I0c753b3db050fb87d4bbe2301a7ead854f28456f Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/c/flashrom/+/54066 Tested-by: build bot (Jenkins) Reviewed-by: Anastasia Klimchuk Reviewed-by: Angel Pons --- it85spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it85spi.c') diff --git a/it85spi.c b/it85spi.c index 9817c2a9f..4d0f98801 100644 --- a/it85spi.c +++ b/it85spi.c @@ -366,7 +366,7 @@ int it85xx_spi_init(struct superio s) * a debug message about it. */ /* Set this as SPI controller. */ - register_spi_master(&spi_master_it85xx); + register_spi_master(&spi_master_it85xx, NULL); return 0; } -- cgit v1.2.3