summaryrefslogtreecommitdiffstats
path: root/src/include/device/pci.h
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-07 16:10:21 -0800
committerLee Leahy <leroy.p.leahy@intel.com>2017-03-13 17:21:10 +0100
commitbab6bc4d77fbc260e972420ba1e5bbe03e5087ea (patch)
treec375ec001d954f7c81fe0535e7fdd4a1d75ccf49 /src/include/device/pci.h
parent7340217262759c3daab41466138ba7d40a8f13d5 (diff)
downloadcoreboot-bab6bc4d77fbc260e972420ba1e5bbe03e5087ea.tar.gz
coreboot-bab6bc4d77fbc260e972420ba1e5bbe03e5087ea.tar.bz2
coreboot-bab6bc4d77fbc260e972420ba1e5bbe03e5087ea.zip
src/include: Remove space between function name and parameters
Fix the following warning detected by checkpatch.pl: WARNING: Unnecessary space before function pointer arguments TEST=Build and run on Galileo Gen2 Change-Id: I2b56af20d5f74cc2625d3cb357fbb137bd440af0 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18660 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/include/device/pci.h')
-rw-r--r--src/include/device/pci.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/device/pci.h b/src/include/device/pci.h
index a8e7f8b6e369..952f6e3d3990 100644
--- a/src/include/device/pci.h
+++ b/src/include/device/pci.h
@@ -39,12 +39,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)(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);
};
struct pci_driver {