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 --- it87spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it87spi.c') diff --git a/it87spi.c b/it87spi.c index 868b479a8..0760ac864 100644 --- a/it87spi.c +++ b/it87spi.c @@ -426,7 +426,7 @@ static uint16_t it87spi_probe(uint16_t port) if (internal_buses_supported & BUS_SPI) msg_pdbg("Overriding chipset SPI with IT87 SPI.\n"); /* FIXME: Add the SPI bus or replace the other buses with it? */ - register_spi_master(&spi_master_it87xx); + register_spi_master(&spi_master_it87xx, NULL); return 0; } -- cgit v1.2.3