mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 14:11:15 +02:00
Rename programmer registration functions
Register_programmer suggests that we register a programmer. However, that function registers a master for a given bus type, and a programmer may support multiple masters (e.g. SPI, FWH). Rename a few other functions to be more consistent. Corresponding to flashrom svn r1831. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
This commit is contained in:
4
spi25.c
4
spi25.c
@ -172,7 +172,7 @@ int probe_spi_rdid4(struct flashctx *flash)
|
||||
/* Some SPI controllers do not support commands with writecnt=1 and
|
||||
* readcnt=4.
|
||||
*/
|
||||
switch (flash->pgm->spi.type) {
|
||||
switch (flash->mst->spi.type) {
|
||||
#if CONFIG_INTERNAL == 1
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
case SPI_CONTROLLER_IT87XX:
|
||||
@ -1079,7 +1079,7 @@ int default_spi_write_aai(struct flashctx *flash, const uint8_t *buf, unsigned i
|
||||
.readarr = NULL,
|
||||
}};
|
||||
|
||||
switch (flash->pgm->spi.type) {
|
||||
switch (flash->mst->spi.type) {
|
||||
#if CONFIG_INTERNAL == 1
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
case SPI_CONTROLLER_IT87XX:
|
||||
|
Reference in New Issue
Block a user