southbridge/intel/i82801gx: Fix problems found by checkpatch.pl

Change-Id: Iddc67e7c126ce19429afc24b021e385353564cb8
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/18705
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Arthur Heymans
2017-03-09 12:02:52 +01:00
committed by Martin Roth
parent 70a8e34853
commit 3f111b0b11
16 changed files with 323 additions and 197 deletions

View File

@@ -89,7 +89,8 @@ static void pci_init(struct device *dev)
pci_write_config16(dev, 0x1e, reg16);
}
static void pcie_set_subsystem(device_t dev, unsigned vendor, unsigned device)
static void pcie_set_subsystem(device_t dev, unsigned int vendor,
unsigned int device)
{
/* NOTE: This is not the default position! */
if (!vendor || !device) {
@@ -125,7 +126,7 @@ static const unsigned short i82801gx_pcie_ids[] = {
};
static const struct pci_driver i82801gx_pcie __pci_driver = {
.ops = &device_ops,
.vendor = PCI_VENDOR_ID_INTEL,
.devices= i82801gx_pcie_ids,
.ops = &device_ops,
.vendor = PCI_VENDOR_ID_INTEL,
.devices = i82801gx_pcie_ids,
};