1. 22 6月, 2012 1 次提交
  2. 14 12月, 2011 1 次提交
  3. 02 12月, 2011 1 次提交
  4. 26 11月, 2011 1 次提交
  5. 02 11月, 2011 1 次提交
  6. 27 8月, 2011 1 次提交
  7. 21 7月, 2011 1 次提交
  8. 17 7月, 2011 1 次提交
    • A
      checkpatch: don't error out on },{ lines · 9fbe4784
      Alexander Graf 提交于
      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: NKevin Wolf <kwolf@redhat.com>
      Signed-off-by: NAlexander Graf <agraf@suse.de>
      9fbe4784
  9. 05 2月, 2011 1 次提交
  10. 22 1月, 2011 1 次提交
  11. 21 1月, 2011 2 次提交