From deb54399df163e782aff00beb106f3b6a7cc9663 Mon Sep 17 00:00:00 2001 From: aliguori Date: Mon, 26 Jan 2009 15:37:35 +0000 Subject: Define PCI vendor and device IDs in pci.h (Stuart Brady) This patch defines PCI vendor and device IDs in pci.h (matching those from Linux's pci_ids.h), and uses those definitions where appropriate. Change from v1: Introduces pci_config_set_vendor_id() / pci_config_set_device_id() accessors as suggested by Anthony Liguori. Signed-off-by: Stuart Brady Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6442 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/sh_pci.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'hw/sh_pci.c') diff --git a/hw/sh_pci.c b/hw/sh_pci.c index 9f89f2d..8e3fce0 100644 --- a/hw/sh_pci.c +++ b/hw/sh_pci.c @@ -188,10 +188,8 @@ PCIBus *sh_pci_register_bus(pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, cpu_register_physical_memory(0xfe240000, 0x40000, iop); cpu_register_physical_memory(0xfd000000, 0x1000000, mem); - p->dev->config[0x00] = 0x54; // HITACHI - p->dev->config[0x01] = 0x10; // - p->dev->config[0x02] = 0x0e; // SH7751R - p->dev->config[0x03] = 0x35; // + pci_config_set_vendor_id(p->dev->config, PCI_VENDOR_ID_HITACHI); + pci_config_set_device_id(p->dev->config, 0x350e); // SH7751R p->dev->config[0x04] = 0x80; p->dev->config[0x05] = 0x00; p->dev->config[0x06] = 0x90; -- cgit v1.1