diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-10 15:32:03 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-10 15:32:03 -0500 |
commit | 0c3271c558cf853171b213a73d1c24394f77c7a2 (patch) | |
tree | 94429c7ca5ff20122547a3efdc711a8ea7d66f5c /hw/es1370.c | |
parent | 36afc451599175eb8f03f1962de74e7f7a8af4db (diff) |
Indent ac97 and es1370 according to audio formatting
For the sake of consistency. I pulled in the wrong patches from Gerd when
he did the qdev conversion.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/es1370.c')
-rw-r--r-- | hw/es1370.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/es1370.c b/hw/es1370.c index 9e860f9b08..8d5a9f9883 100644 --- a/hw/es1370.c +++ b/hw/es1370.c @@ -1054,13 +1054,13 @@ int es1370_init (PCIBus *bus) static PCIDeviceInfo es1370_info = { .qdev.name = "ES1370", - .qdev.size = sizeof(PCIES1370State), + .qdev.size = sizeof (PCIES1370State), .init = es1370_initfn, }; static void es1370_register(void) { - pci_qdev_register(&es1370_info); + pci_qdev_register (&es1370_info); } -device_init(es1370_register); +device_init (es1370_register); |