device/pciexp_device: Set resources for pciexp_hotplug_dummy_ops

Without setting the set_resources field for pciexp_hotplug_dummy_ops,
we will get an error during pciexp_hotplug_dummy.

 [ERROR] NONE missing set_resources

Because the set_resources field is considered mandatory, explicitly set
it as no-op noop_set_resources.

BUG=b:220639445
TEST=emerge-brya coreboot

Signed-off-by: John Su <john_su@compal.corp-partner.google.com>
Change-Id: Ifee7479c69cf16025dbd4e3924056ed7f8e253cf
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63101
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
John Su 2022-03-25 10:37:52 +08:00 committed by Felix Held
parent 4dac96d968
commit 3ecc77722c
1 changed files with 1 additions and 0 deletions

View File

@ -585,6 +585,7 @@ static void pciexp_hotplug_dummy_read_resources(struct device *dev)
static struct device_operations pciexp_hotplug_dummy_ops = { static struct device_operations pciexp_hotplug_dummy_ops = {
.read_resources = pciexp_hotplug_dummy_read_resources, .read_resources = pciexp_hotplug_dummy_read_resources,
.set_resources = noop_set_resources,
}; };
void pciexp_hotplug_scan_bridge(struct device *dev) void pciexp_hotplug_scan_bridge(struct device *dev)