diff options
author | Angel Pons <th3fanbus@gmail.com> | 2020-10-25 02:49:29 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2020-11-04 22:37:58 +0000 |
commit | 257b00f3575ccf7853061d75fbb4f0b362a88b36 (patch) | |
tree | eccfae81fa583fcbd7f8ebcc46a414b06d9b1e37 /src/soc/intel/broadwell | |
parent | 2ac4cc65955833fc48d44302cef26b6fd17341c2 (diff) |
soc/intel/broadwell/gma.c: Align struct with Haswell
Change-Id: Ifd1fb02497e1d326b6b9c5752f471f52b145a8ef
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46732
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/soc/intel/broadwell')
-rw-r--r-- | src/soc/intel/broadwell/gma.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/intel/broadwell/gma.c b/src/soc/intel/broadwell/gma.c index 3889be3513..d42eebc4f1 100644 --- a/src/soc/intel/broadwell/gma.c +++ b/src/soc/intel/broadwell/gma.c @@ -588,12 +588,12 @@ static void gma_generate_ssdt(const struct device *dev) } static struct device_operations igd_ops = { - .read_resources = &pci_dev_read_resources, - .set_resources = &pci_dev_set_resources, - .enable_resources = &pci_dev_enable_resources, - .init = &igd_init, - .ops_pci = &pci_dev_ops_pci, + .read_resources = pci_dev_read_resources, + .set_resources = pci_dev_set_resources, + .enable_resources = pci_dev_enable_resources, + .init = igd_init, .acpi_fill_ssdt = gma_generate_ssdt, + .ops_pci = &pci_dev_ops_pci, }; static const unsigned short pci_device_ids[] = { |