mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 14:33:18 +02:00
bitbang: Extend register_spi_bitbang_master() API with spi data
This allows the users of register_spi_bitbang_master() API to pass their spi data into the API, and then the data can go further, into register_spi_master() API. BUG=b:185191942 TEST=builds Change-Id: I13e83ae74dbc3a3e79c84d1463683d360ff47bc0 Signed-off-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/54990 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
This commit is contained in:

committed by
Edward O'Callaghan

parent
0bc0ab932e
commit
30815fc370
@ -151,7 +151,7 @@ int mcp6x_spi_init(int want_spi)
|
||||
(status >> MCP6X_SPI_GRANT) & 0x1);
|
||||
mcp_gpiostate = status & 0xff;
|
||||
|
||||
if (register_spi_bitbang_master(&bitbang_spi_master_mcp6x)) {
|
||||
if (register_spi_bitbang_master(&bitbang_spi_master_mcp6x, NULL)) {
|
||||
/* This should never happen. */
|
||||
msg_perr("MCP6X bitbang SPI master init failed!\n");
|
||||
return 1;
|
||||
|
Reference in New Issue
Block a user