diff options
author | tychon <tychon@FreeBSD.org> | 2014-04-18 16:01:19 +0000 |
---|---|---|
committer | tychon <tychon@FreeBSD.org> | 2014-04-18 16:01:19 +0000 |
commit | 5d85d72f2939e3def97dfc5be75f83535cfa827b (patch) | |
tree | 238b18fe0c821c5b3f7e945ad2ed7752853d0815 /usr.sbin/bhyve | |
parent | 2c52df9a16291875deff8314a294582040ff68c3 (diff) | |
download | FreeBSD-src-5d85d72f2939e3def97dfc5be75f83535cfa827b.zip FreeBSD-src-5d85d72f2939e3def97dfc5be75f83535cfa827b.tar.gz |
Fix ACPI DSDT indentation cosmetic breakage introduced in r264631 --
pointed out by jhb@.
Approved by: grehan (co-mentor)
Diffstat (limited to 'usr.sbin/bhyve')
-rw-r--r-- | usr.sbin/bhyve/pci_lpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bhyve/pci_lpc.c b/usr.sbin/bhyve/pci_lpc.c index d50ea89..f5e4a69 100644 --- a/usr.sbin/bhyve/pci_lpc.c +++ b/usr.sbin/bhyve/pci_lpc.c @@ -229,7 +229,6 @@ pci_lpc_write_dsdt(struct pci_devinst *pi) dsdt_unindent(2); dsdt_line(" })"); dsdt_line("}"); - dsdt_unindent(1); dsdt_line(""); dsdt_line("Device (TIMR)"); @@ -243,6 +242,7 @@ pci_lpc_write_dsdt(struct pci_devinst *pi) dsdt_unindent(2); dsdt_line(" })"); dsdt_line("}"); + dsdt_unindent(1); dsdt_line("}"); } |