aboutsummaryrefslogtreecommitdiffstats
path: root/raiden_debug_spi.c
diff options
context:
space:
mode:
authorAnastasia Klimchuk <aklm@chromium.org>2021-05-25 13:53:25 +1000
committerEdward O'Callaghan <quasisec@chromium.org>2021-06-03 05:12:29 +0000
commit45e0a071f13a684166335394c4ea40c9d055e198 (patch)
treef0f97538f75bbbdee80c2e680ba5e82a6c5aed5b /raiden_debug_spi.c
parent89a16e4df69a6c123aeaf4b64b71a93f5a274648 (diff)
downloadflashrom-45e0a071f13a684166335394c4ea40c9d055e198.tar.gz
flashrom-45e0a071f13a684166335394c4ea40c9d055e198.tar.bz2
flashrom-45e0a071f13a684166335394c4ea40c9d055e198.zip
spi_master: Make use of new register_spi_master() API
Some more spi masters are now ready to get the advantage of new API and pass pointers to dynamically allocated data to register_spi_master(). This way we can avoid some mutable globals. BUG=b:185191942 TEST=./flashrom --programmer raiden_debug_spi -r $(mktemp) ./flashrom --programmer raiden_debug_spi -v /tmp/tmp.Fch5QLVb4R Change-Id: If72f54c28a95b402b3565fd14ea481f734e1c970 Signed-off-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/54889 Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'raiden_debug_spi.c')
-rw-r--r--raiden_debug_spi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/raiden_debug_spi.c b/raiden_debug_spi.c
index c2758515..f67bbe5e 100644
--- a/raiden_debug_spi.c
+++ b/raiden_debug_spi.c
@@ -1597,7 +1597,7 @@ loop_end:
data->in_ep = in_endpoint;
data->out_ep = out_endpoint;
- spi_config->data = data;
+ spi_config->data = data; /* data is needed to configure protocol below */
/*
* The SPI master needs to be configured based on the device connected.
* Using the device protocol interrogation, we will set the limits on
@@ -1614,7 +1614,7 @@ loop_end:
return SPI_GENERIC_ERROR;
}
- register_spi_master(spi_config, NULL);
+ register_spi_master(spi_config, data);
register_shutdown(raiden_debug_spi_shutdown, spi_config);
return 0;