device/pci_ops: Drop unused parameter

Drop the bus parameter, we do not use it.

It would still be possible to do per-bus selection
by evaluating the bus number, but currently we do
not have need for that either.

Change-Id: I09e928b4677d9db2eee12730ba7b3fdd8837805c
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/31678
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Kyösti Mälkki
2019-01-23 15:56:30 +02:00
parent 92b5296a7b
commit 00ad8dfa18
6 changed files with 54 additions and 65 deletions

View File

@ -36,15 +36,12 @@ struct pci_operations {
/* Common pci bus operations */
struct pci_bus_operations {
uint8_t (*read8)(struct bus *pbus, int bus, int devfn, int where);
uint16_t (*read16)(struct bus *pbus, int bus, int devfn, int where);
uint32_t (*read32)(struct bus *pbus, int bus, int devfn, int where);
void (*write8)(struct bus *pbus, int bus, int devfn, int where,
uint8_t val);
void (*write16)(struct bus *pbus, int bus, int devfn, int where,
uint16_t val);
void (*write32)(struct bus *pbus, int bus, int devfn, int where,
uint32_t val);
uint8_t (*read8)(int bus, int devfn, int where);
uint16_t (*read16)(int bus, int devfn, int where);
uint32_t (*read32)(int bus, int devfn, int where);
void (*write8)(int bus, int devfn, int where, uint8_t val);
void (*write16)(int bus, int devfn, int where, uint16_t val);
void (*write32)(int bus, int devfn, int where, uint32_t val);
};
struct pci_driver {