diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-06-18 19:55:38 +0900 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-06-22 10:15:29 -0500 |
commit | 9391e4b8828a6ebcde843a2012f0fae4b601b302 (patch) | |
tree | aa21d889eb1dfceba573bc60590e06bcdf182db6 /hw/vmware_vga.c | |
parent | 1be7daa9d2e49dada01fceb82983f78b3c72bcf7 (diff) |
vmware_vga: clean up
use NULL instead of 0 for pci_register_device() argument
for consistency. Any other caller uses NULL.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/vmware_vga.c')
-rw-r--r-- | hw/vmware_vga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index 9c354dd108..accdac4986 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -1217,7 +1217,7 @@ void pci_vmsvga_init(PCIBus *bus) /* Setup PCI configuration */ s = (struct pci_vmsvga_state_s *) pci_register_device(bus, "QEMUware SVGA", - sizeof(struct pci_vmsvga_state_s), -1, 0, 0); + sizeof(struct pci_vmsvga_state_s), -1, NULL, NULL); pci_config_set_vendor_id(s->card.config, PCI_VENDOR_ID_VMWARE); pci_config_set_device_id(s->card.config, SVGA_PCI_DEVICE_ID); s->card.config[PCI_COMMAND] = 0x07; /* I/O + Memory */ |