aboutsummaryrefslogtreecommitdiffstats
path: root/unmodified_drivers
diff options
context:
space:
mode:
authorSteven Smith <ssmith@xensource.com>2006-09-21 11:15:13 +0100
committerSteven Smith <ssmith@xensource.com>2006-09-21 11:15:13 +0100
commit5759c4fb6bb2055642f7a2cea4a2b6a5147f4c19 (patch)
tree3b89575cf5799ab033680bbef4132e41161884cc /unmodified_drivers
parente158d6de5b396c08eb9221669e5fc892a680f0a7 (diff)
downloadxen-5759c4fb6bb2055642f7a2cea4a2b6a5147f4c19.tar.gz
xen-5759c4fb6bb2055642f7a2cea4a2b6a5147f4c19.tar.bz2
xen-5759c4fb6bb2055642f7a2cea4a2b6a5147f4c19.zip
[HVM] Use the right, PCI SIG assigned, vendor ID for xensource rather than
just making one up. Signed-off-by: Steven Smith <sos22@cam.ac.uk>
Diffstat (limited to 'unmodified_drivers')
-rw-r--r--unmodified_drivers/linux-2.6/platform-pci/platform-pci.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c b/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c
index 2bb4dbd5b4..36ad585fbf 100644
--- a/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c
+++ b/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c
@@ -231,11 +231,13 @@ static int __devinit platform_pci_init(struct pci_dev *pdev,
return ret;
}
-#define XEN_PLATFORM_VENDOR_ID 0xfffd
-#define XEN_PLATFORM_DEVICE_ID 0x0101
+#define XEN_PLATFORM_VENDOR_ID 0x5853
+#define XEN_PLATFORM_DEVICE_ID 0x0001
static struct pci_device_id platform_pci_tbl[] __devinitdata = {
{XEN_PLATFORM_VENDOR_ID, XEN_PLATFORM_DEVICE_ID,
PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
+ /* Continue to recognise the old ID for now */
+ {0xfffd, 0x0101, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
{0,}
};