hw/display/cirrus_vga: Clean up indentation in pci_cirrus_vga_realize()
Most of the code in this function had been indented with 5 spaces instead of 4. Since 4 is our preferred style, remove one space in the bad lines here. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <20220317083027.16688-2-thuth@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
832061a2fa
commit
5f2011be44
@ -2940,27 +2940,28 @@ void cirrus_init_common(CirrusVGAState *s, Object *owner,
|
||||
|
||||
static void pci_cirrus_vga_realize(PCIDevice *dev, Error **errp)
|
||||
{
|
||||
PCICirrusVGAState *d = PCI_CIRRUS_VGA(dev);
|
||||
CirrusVGAState *s = &d->cirrus_vga;
|
||||
PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev);
|
||||
int16_t device_id = pc->device_id;
|
||||
PCICirrusVGAState *d = PCI_CIRRUS_VGA(dev);
|
||||
CirrusVGAState *s = &d->cirrus_vga;
|
||||
PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev);
|
||||
int16_t device_id = pc->device_id;
|
||||
|
||||
/* follow real hardware, cirrus card emulated has 4 MB video memory.
|
||||
Also accept 8 MB/16 MB for backward compatibility. */
|
||||
if (s->vga.vram_size_mb != 4 && s->vga.vram_size_mb != 8 &&
|
||||
s->vga.vram_size_mb != 16) {
|
||||
error_setg(errp, "Invalid cirrus_vga ram size '%u'",
|
||||
s->vga.vram_size_mb);
|
||||
return;
|
||||
}
|
||||
/* setup VGA */
|
||||
vga_common_init(&s->vga, OBJECT(dev));
|
||||
cirrus_init_common(s, OBJECT(dev), device_id, 1, pci_address_space(dev),
|
||||
pci_address_space_io(dev));
|
||||
s->vga.con = graphic_console_init(DEVICE(dev), 0, s->vga.hw_ops, &s->vga);
|
||||
|
||||
/* setup PCI */
|
||||
/*
|
||||
* Follow real hardware, cirrus card emulated has 4 MB video memory.
|
||||
* Also accept 8 MB/16 MB for backward compatibility.
|
||||
*/
|
||||
if (s->vga.vram_size_mb != 4 && s->vga.vram_size_mb != 8 &&
|
||||
s->vga.vram_size_mb != 16) {
|
||||
error_setg(errp, "Invalid cirrus_vga ram size '%u'",
|
||||
s->vga.vram_size_mb);
|
||||
return;
|
||||
}
|
||||
/* setup VGA */
|
||||
vga_common_init(&s->vga, OBJECT(dev));
|
||||
cirrus_init_common(s, OBJECT(dev), device_id, 1, pci_address_space(dev),
|
||||
pci_address_space_io(dev));
|
||||
s->vga.con = graphic_console_init(DEVICE(dev), 0, s->vga.hw_ops, &s->vga);
|
||||
|
||||
/* setup PCI */
|
||||
memory_region_init(&s->pci_bar, OBJECT(dev), "cirrus-pci-bar0", 0x2000000);
|
||||
|
||||
/* XXX: add byte swapping apertures */
|
||||
@ -2968,14 +2969,14 @@ static void pci_cirrus_vga_realize(PCIDevice *dev, Error **errp)
|
||||
memory_region_add_subregion(&s->pci_bar, 0x1000000,
|
||||
&s->cirrus_linear_bitblt_io);
|
||||
|
||||
/* setup memory space */
|
||||
/* memory #0 LFB */
|
||||
/* memory #1 memory-mapped I/O */
|
||||
/* XXX: s->vga.vram_size must be a power of two */
|
||||
pci_register_bar(&d->dev, 0, PCI_BASE_ADDRESS_MEM_PREFETCH, &s->pci_bar);
|
||||
if (device_id == CIRRUS_ID_CLGD5446) {
|
||||
pci_register_bar(&d->dev, 1, 0, &s->cirrus_mmio_io);
|
||||
}
|
||||
/* setup memory space */
|
||||
/* memory #0 LFB */
|
||||
/* memory #1 memory-mapped I/O */
|
||||
/* XXX: s->vga.vram_size must be a power of two */
|
||||
pci_register_bar(&d->dev, 0, PCI_BASE_ADDRESS_MEM_PREFETCH, &s->pci_bar);
|
||||
if (device_id == CIRRUS_ID_CLGD5446) {
|
||||
pci_register_bar(&d->dev, 1, 0, &s->cirrus_mmio_io);
|
||||
}
|
||||
}
|
||||
|
||||
static Property pci_vga_cirrus_properties[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user