diff options
author | Edward O'Callaghan <quasisec@google.com> | 2022-08-15 12:05:31 +1000 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-11-01 01:15:21 +0000 |
commit | 10e7a0ebd74db72f00b8fc1b741f411d5a49b92d (patch) | |
tree | ce00649acaeb036526489740af32b9a8cc3c403b /tests | |
parent | 74c3e56ec24f0d2800ea376d73d9b244cd8a4b40 (diff) | |
download | flashrom-10e7a0ebd74db72f00b8fc1b741f411d5a49b92d.tar.gz flashrom-10e7a0ebd74db72f00b8fc1b741f411d5a49b92d.tar.bz2 flashrom-10e7a0ebd74db72f00b8fc1b741f411d5a49b92d.zip |
tree/: Convert flashchip probe func ptr to enumerate
This forges the way for flashchips.c to be pure declarative
data and lookup functions for dispatch to be pure. This
means that the flashchips data could be extracted out to
be agnostic data of the flashrom code and algorithms.
TEST='R|W|E && --flash-name' on ARM, AMD & Intel DUT's.
Change-Id: I00aaab9c83f305cd47e78c36d9c2867f2b73c396
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/66781
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nikolai Artemiev <nartemiev@google.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spi25.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/spi25.c b/tests/spi25.c index f1019104..5cd84fb8 100644 --- a/tests/spi25.c +++ b/tests/spi25.c @@ -31,7 +31,7 @@ struct flashchip mock_chip = { .total_size = 0, .page_size = 256, .tested = TEST_BAD_PREW, - .probe = probe_spi_rdid, + .probe = PROBE_SPI_RDID, .write = NULL, }; |