Alexander Graf 9fbe478444 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>
2011-07-17 01:54:25 +02:00
2011-06-14 12:56:49 +02:00
2011-07-17 01:54:25 +02:00
2011-06-20 15:13:34 -03:00
2011-06-17 02:58:29 +02:00
2011-06-28 20:52:37 +02:00
2011-06-08 11:56:40 +02:00
2011-06-20 17:08:57 +01:00
2011-06-10 23:18:19 +02:00
2011-07-17 01:54:24 +02:00
2011-06-26 18:25:35 +00:00
2011-06-15 14:36:16 +02:00
2011-06-07 13:52:10 -05:00
2011-06-26 18:25:35 +00:00
2011-06-20 15:18:43 -03:00
2011-06-14 03:08:57 +02:00
2011-06-14 09:34:34 -05:00
2011-07-17 01:54:24 +02:00
2011-06-26 18:25:35 +00:00
2011-06-15 19:58:48 +00:00
2011-06-15 19:58:48 +00:00
2011-06-06 09:14:42 +02:00
2011-06-06 08:54:55 -05:00
2011-06-14 09:34:34 -05:00
2011-06-16 11:42:40 -03:00
2011-06-16 11:42:40 -03:00
2011-06-23 11:28:06 +02:00
2011-06-26 18:25:13 +00:00
2011-07-04 22:12:21 +02:00

Read the documentation in qemu-doc.html.

Fabrice Bellard.
Description
No description provided
Readme 404 MiB
Languages
C 82.6%
C++ 6.5%
Python 3.4%
Dylan 2.9%
Shell 1.6%
Other 2.8%