diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2012-10-19 18:47:57 +0000 | 
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2012-10-19 18:47:57 +0000 | 
| commit | 31aa864e8c068201d58aad3a8f82ddb51df11015 (patch) | |
| tree | 5e268c18ae0fa3ec73e13e2af60a3be57d8393ec /source/components/hardware | |
| parent | ebef5c959a0ea58fa05c4a5a80bb93104780bf87 (diff) | |
Notes
Diffstat (limited to 'source/components/hardware')
| -rw-r--r-- | source/components/hardware/hwacpi.c | 3 | ||||
| -rw-r--r-- | source/components/hardware/hwgpe.c | 1 | ||||
| -rw-r--r-- | source/components/hardware/hwpci.c | 4 | ||||
| -rw-r--r-- | source/components/hardware/hwregs.c | 1 | ||||
| -rw-r--r-- | source/components/hardware/hwtimer.c | 3 | ||||
| -rw-r--r-- | source/components/hardware/hwvalid.c | 3 | ||||
| -rw-r--r-- | source/components/hardware/hwxface.c | 1 | 
7 files changed, 4 insertions, 12 deletions
| diff --git a/source/components/hardware/hwacpi.c b/source/components/hardware/hwacpi.c index d9f16ef9d7675..9f9fec329046c 100644 --- a/source/components/hardware/hwacpi.c +++ b/source/components/hardware/hwacpi.c @@ -1,4 +1,3 @@ -  /******************************************************************************   *   * Module Name: hwacpi - ACPI Hardware Initialization/Mode Interface @@ -165,7 +164,7 @@ AcpiHwSetMode (   *   * RETURN:      SYS_MODE_ACPI or SYS_MODE_LEGACY   * - * DESCRIPTION: Return current operating state of system.  Determined by + * DESCRIPTION: Return current operating state of system. Determined by   *              querying the SCI_EN bit.   *   ******************************************************************************/ diff --git a/source/components/hardware/hwgpe.c b/source/components/hardware/hwgpe.c index 11cb36e86b975..8203916da501b 100644 --- a/source/components/hardware/hwgpe.c +++ b/source/components/hardware/hwgpe.c @@ -1,4 +1,3 @@ -  /******************************************************************************   *   * Module Name: hwgpe - Low level GPE enable/disable/clear functions diff --git a/source/components/hardware/hwpci.c b/source/components/hardware/hwpci.c index 065e42d95eb61..1c42f3a7dd299 100644 --- a/source/components/hardware/hwpci.c +++ b/source/components/hardware/hwpci.c @@ -292,7 +292,7 @@ AcpiHwProcessPciList (              &BusNumber, &IsBridge);          if (ACPI_FAILURE (Status))          { -            return_ACPI_STATUS (Status); +            return (Status);          }          Info = Info->Next; @@ -304,7 +304,7 @@ AcpiHwProcessPciList (          PciId->Segment, PciId->Bus, PciId->Device, PciId->Function,          Status, BusNumber, IsBridge)); -    return_ACPI_STATUS (AE_OK); +    return (AE_OK);  } diff --git a/source/components/hardware/hwregs.c b/source/components/hardware/hwregs.c index 6d89883179f41..a89e97cd8c406 100644 --- a/source/components/hardware/hwregs.c +++ b/source/components/hardware/hwregs.c @@ -1,4 +1,3 @@ -  /*******************************************************************************   *   * Module Name: hwregs - Read/write access functions for the various ACPI diff --git a/source/components/hardware/hwtimer.c b/source/components/hardware/hwtimer.c index 15dc58f0bffe1..44de309456c78 100644 --- a/source/components/hardware/hwtimer.c +++ b/source/components/hardware/hwtimer.c @@ -1,4 +1,3 @@ -  /******************************************************************************   *   * Name: hwtimer.c - ACPI Power Management Timer Interface @@ -144,7 +143,7 @@ ACPI_EXPORT_SYMBOL (AcpiGetTimer)   *              a versatile and accurate timer.   *   *              Note that this function accommodates only a single timer - *              rollover.  Thus for 24-bit timers, this function should only + *              rollover. Thus for 24-bit timers, this function should only   *              be used for calculating durations less than ~4.6 seconds   *              (~20 minutes for 32-bit timers) -- calculations below:   * diff --git a/source/components/hardware/hwvalid.c b/source/components/hardware/hwvalid.c index 4462434bbfe6f..535cdbbd1a980 100644 --- a/source/components/hardware/hwvalid.c +++ b/source/components/hardware/hwvalid.c @@ -1,4 +1,3 @@ -  /******************************************************************************   *   * Module Name: hwvalid - I/O request validation @@ -364,5 +363,3 @@ AcpiHwWritePort (      return (AE_OK);  } - - diff --git a/source/components/hardware/hwxface.c b/source/components/hardware/hwxface.c index 3fec9b566f054..e4f8c802c455a 100644 --- a/source/components/hardware/hwxface.c +++ b/source/components/hardware/hwxface.c @@ -1,4 +1,3 @@ -  /******************************************************************************   *   * Module Name: hwxface - Public ACPICA hardware interfaces | 
