mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 14:33:18 +02:00
par_masters: Reshuffle to remove forward declarations
Dispense with all these forward declarations by way of ordering. Just deal with all the par_masters in one go to be over and done with. BUG=none BRANCH=none TEST=builds Change-Id: I88e89992380195fee7c9de7ec57502ab980ec5df Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/54873 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:

committed by
Edward O'Callaghan

parent
4f53772103
commit
ad8eb60e5d
24
gfxnvidia.c
24
gfxnvidia.c
@ -59,9 +59,17 @@ const struct dev_entry gfx_nvidia[] = {
|
||||
};
|
||||
|
||||
static void gfxnvidia_chip_writeb(const struct flashctx *flash, uint8_t val,
|
||||
chipaddr addr);
|
||||
chipaddr addr)
|
||||
{
|
||||
pci_mmio_writeb(val, nvidia_bar + (addr & GFXNVIDIA_MEMMAP_MASK));
|
||||
}
|
||||
|
||||
static uint8_t gfxnvidia_chip_readb(const struct flashctx *flash,
|
||||
const chipaddr addr);
|
||||
const chipaddr addr)
|
||||
{
|
||||
return pci_mmio_readb(nvidia_bar + (addr & GFXNVIDIA_MEMMAP_MASK));
|
||||
}
|
||||
|
||||
static const struct par_master par_master_gfxnvidia = {
|
||||
.chip_readb = gfxnvidia_chip_readb,
|
||||
.chip_readw = fallback_chip_readw,
|
||||
@ -107,15 +115,3 @@ int gfxnvidia_init(void)
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void gfxnvidia_chip_writeb(const struct flashctx *flash, uint8_t val,
|
||||
chipaddr addr)
|
||||
{
|
||||
pci_mmio_writeb(val, nvidia_bar + (addr & GFXNVIDIA_MEMMAP_MASK));
|
||||
}
|
||||
|
||||
static uint8_t gfxnvidia_chip_readb(const struct flashctx *flash,
|
||||
const chipaddr addr)
|
||||
{
|
||||
return pci_mmio_readb(nvidia_bar + (addr & GFXNVIDIA_MEMMAP_MASK));
|
||||
}
|
||||
|
Reference in New Issue
Block a user