From 65f8d48095479e05e80b27e4d91f23f8a16e2a24 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Fri, 8 Feb 2008 15:57:02 +0000 Subject: [PATCH] Trivial patch: for an id, use DEVICE_ID_PCI, not DEVICE_PATH_PCI. Signed-off-by: Ronald G. Minnich Acked-by: Ronald G. Minnich git-svn-id: svn://coreboot.org/repository/coreboot-v3@581 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- device/pci_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device/pci_device.c b/device/pci_device.c index 9ea166c5d8..d698c87cf5 100644 --- a/device/pci_device.c +++ b/device/pci_device.c @@ -972,7 +972,7 @@ struct device *pci_probe_dev(struct device *dev, struct bus *bus, devfn, id); return NULL; } - devid.type = DEVICE_PATH_PCI; + devid.type = DEVICE_ID_PCI; devid.u.pci.vendor = id & 0xffff; devid.u.pci.device = id >> 16; dev = alloc_dev(bus, &dummy.path, &devid);