summary refs log tree commit diff stats
path: root/hw/xen_console.c
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2011-06-29 08:04:27 +0200
committerAlexander Graf <agraf@suse.de>2011-07-17 01:54:25 +0200
commit9fbe4784449f6248224ac95e0aa9e56a0bfdd155 (patch)
tree1363da68e5442d3e3b8c993e74e877aeef9f7df1 /hw/xen_console.c
parent7cef3f4fdbe813ac7d495e15a81531f1181b19f9 (diff)
downloadfocaccia-qemu-9fbe4784449f6248224ac95e0aa9e56a0bfdd155.tar.gz
focaccia-qemu-9fbe4784449f6248224ac95e0aa9e56a0bfdd155.zip
checkpatch: don't error out on },{ lines
When having code like this:

    static PCIDeviceInfo piix_ide_info[] = {
        {
            .qdev.name    = "piix3-ide",
            .qdev.size    = sizeof(PCIIDEState),
            .qdev.no_user = 1,
            .no_hotplug   = 1,
            .init         = pci_piix_ide_initfn,
            .vendor_id    = PCI_VENDOR_ID_INTEL,
            .device_id    = PCI_DEVICE_ID_INTEL_82371SB_1,
            .class_id     = PCI_CLASS_STORAGE_IDE,
        },{
            .qdev.name    = "piix4-ide",
            .qdev.size    = sizeof(PCIIDEState),
            .qdev.no_user = 1,
            .no_hotplug   = 1,
            .init         = pci_piix_ide_initfn,
            .vendor_id    = PCI_VENDOR_ID_INTEL,
            .device_id    = PCI_DEVICE_ID_INTEL_82371AB,
            .class_id     = PCI_CLASS_STORAGE_IDE,
        },{
            /* end of list */
        }
    };

checkpatch currently errors out, claiming that spaces need to follow
commas. However, this particular style of defining structs is pretty
common in qemu code and very readable. So let's declare it as supported
for the above case.

Reported-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/xen_console.c')
0 files changed, 0 insertions, 0 deletions