From 00ad8dfa181e627cbf566c575d1b95ffc7e435af Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Wed, 23 Jan 2019 15:56:30 +0200 Subject: device/pci_ops: Drop unused parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-on: https://review.coreboot.org/c/31678 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin Reviewed-by: Felix Held --- src/include/device/pci.h | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'src/include/device/pci.h') diff --git a/src/include/device/pci.h b/src/include/device/pci.h index 814433dec8..0ead5784f6 100644 --- a/src/include/device/pci.h +++ b/src/include/device/pci.h @@ -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 { -- cgit v1.2.3