nb/intel/i945/gma: Fix aligment of equal sign

Change-Id: I4251071fc8d41a923b4e12de214670764097d47c
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/25674
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
Paul Menzel 2018-04-14 19:56:46 +02:00 committed by Patrick Georgi
parent 0a2b9d4ab3
commit 82683c0d6d
1 changed files with 4 additions and 4 deletions

View File

@ -860,13 +860,13 @@ static const unsigned short i945_gma_func1_ids[] = {
};
static const struct pci_driver i945_gma_func0_driver __pci_driver = {
.ops = &gma_func0_ops,
.vendor = PCI_VENDOR_ID_INTEL,
.ops = &gma_func0_ops,
.vendor = PCI_VENDOR_ID_INTEL,
.devices = i945_gma_func0_ids,
};
static const struct pci_driver i945_gma_func1_driver __pci_driver = {
.ops = &gma_func1_ops,
.vendor = PCI_VENDOR_ID_INTEL,
.ops = &gma_func1_ops,
.vendor = PCI_VENDOR_ID_INTEL,
.devices = i945_gma_func1_ids,
};