Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386/acpi Fix indent level.



details:   https://anonhg.NetBSD.org/src/rev/b8865b4af816
branches:  trunk
changeset: 554431:b8865b4af816
user:      junyoung <junyoung%NetBSD.org@localhost>
date:      Tue Oct 28 04:59:18 2003 +0000

description:
Fix indent level.

diffstat:

 sys/arch/i386/acpi/acpi_wakeup.c |  18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diffs (39 lines):

diff -r 55122ac75cdf -r b8865b4af816 sys/arch/i386/acpi/acpi_wakeup.c
--- a/sys/arch/i386/acpi/acpi_wakeup.c  Tue Oct 28 04:56:23 2003 +0000
+++ b/sys/arch/i386/acpi/acpi_wakeup.c  Tue Oct 28 04:59:18 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: acpi_wakeup.c,v 1.7 2003/06/13 10:56:41 abs Exp $      */
+/*     $NetBSD: acpi_wakeup.c,v 1.8 2003/10/28 04:59:18 junyoung Exp $ */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi_wakeup.c,v 1.7 2003/06/13 10:56:41 abs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_wakeup.c,v 1.8 2003/10/28 04:59:18 junyoung Exp $");
 
 /*-
  * Copyright (c) 2001 Takanori Watanabe <takawata%jp.freebsd.org@localhost>
@@ -157,13 +157,13 @@
         * write the value to command port and wait until we enter sleep state
         */
        do {
-                       AcpiOsStall(1000000);
-                       AcpiOsWritePort(AcpiGbl_FADT->SmiCmd,
-                                       AcpiGbl_FADT->S4BiosReq, 8);
-                       status = AcpiGetRegister(ACPI_BITREG_WAKE_STATUS,
-                                                &ret, ACPI_MTX_LOCK);
-                       if (ACPI_FAILURE(status))
-                               break;
+               AcpiOsStall(1000000);
+               AcpiOsWritePort(AcpiGbl_FADT->SmiCmd,
+                               AcpiGbl_FADT->S4BiosReq, 8);
+               status = AcpiGetRegister(ACPI_BITREG_WAKE_STATUS,
+                                       &ret, ACPI_MTX_LOCK);
+               if (ACPI_FAILURE(status))
+                       break;
        } while (!ret);
 
        AcpiHwEnableNonWakeupGpes();



Home | Main Index | Thread Index | Old Index