mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 15:12:36 +02:00
atapromise: Drop atapromise_ prefix for par data struct members
The name of the struct type already contains atapromise_ prefix, so prefix doesn't need to be repeated in members name TEST=builds Change-Id: Iac647bfe74d4b6f508f06e78b80a020cdf75f562 Signed-off-by: Alexander Goncharov <chat@joursoir.net> Reviewed-on: https://review.coreboot.org/c/flashrom/+/66087 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Thomas Heijligen <src@posteo.de>
This commit is contained in:
parent
336fd0e2cb
commit
e182b174f7
@ -43,7 +43,7 @@
|
|||||||
struct atapromise_data {
|
struct atapromise_data {
|
||||||
uint32_t io_base_addr;
|
uint32_t io_base_addr;
|
||||||
uint32_t rom_base_addr;
|
uint32_t rom_base_addr;
|
||||||
uint8_t *atapromise_bar;
|
uint8_t *bar;
|
||||||
size_t rom_size;
|
size_t rom_size;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -108,7 +108,7 @@ static uint8_t atapromise_chip_readb(const struct flashctx *flash, const chipadd
|
|||||||
const struct atapromise_data *data = flash->mst->par.data;
|
const struct atapromise_data *data = flash->mst->par.data;
|
||||||
|
|
||||||
atapromise_limit_chip(flash->chip, data->rom_size);
|
atapromise_limit_chip(flash->chip, data->rom_size);
|
||||||
return pci_mmio_readb(data->atapromise_bar + (addr & ADDR_MASK));
|
return pci_mmio_readb(data->bar + (addr & ADDR_MASK));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int atapromise_shutdown(void *par_data)
|
static int atapromise_shutdown(void *par_data)
|
||||||
@ -178,7 +178,7 @@ static int atapromise_init(void)
|
|||||||
}
|
}
|
||||||
data->io_base_addr = io_base_addr;
|
data->io_base_addr = io_base_addr;
|
||||||
data->rom_base_addr = rom_base_addr;
|
data->rom_base_addr = rom_base_addr;
|
||||||
data->atapromise_bar = bar;
|
data->bar = bar;
|
||||||
data->rom_size = rom_size;
|
data->rom_size = rom_size;
|
||||||
|
|
||||||
max_rom_decode.parallel = rom_size;
|
max_rom_decode.parallel = rom_size;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user