summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/utmath.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/utmath.c')
-rw-r--r--sys/contrib/dev/acpica/utmath.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/contrib/dev/acpica/utmath.c b/sys/contrib/dev/acpica/utmath.c
index eeee80a..f6dad73 100644
--- a/sys/contrib/dev/acpica/utmath.c
+++ b/sys/contrib/dev/acpica/utmath.c
@@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: utmath - Integer math support routines
- * $Revision: 1.17 $
+ * $Revision: 1.22 $
*
******************************************************************************/
@@ -9,7 +9,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2005, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2007, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -159,14 +159,14 @@ AcpiUtShortDivide (
UINT32 Remainder32;
- ACPI_FUNCTION_TRACE ("UtShortDivide");
+ ACPI_FUNCTION_TRACE (UtShortDivide);
/* Always check for a zero divisor */
if (Divisor == 0)
{
- ACPI_REPORT_ERROR (("AcpiUtShortDivide: Divide by zero\n"));
+ ACPI_ERROR ((AE_INFO, "Divide by zero"));
return_ACPI_STATUS (AE_AML_DIVIDE_BY_ZERO);
}
@@ -229,14 +229,14 @@ AcpiUtDivide (
UINT64_OVERLAY Partial3;
- ACPI_FUNCTION_TRACE ("UtDivide");
+ ACPI_FUNCTION_TRACE (UtDivide);
/* Always check for a zero divisor */
if (InDivisor == 0)
{
- ACPI_REPORT_ERROR (("AcpiUtDivide: Divide by zero\n"));
+ ACPI_ERROR ((AE_INFO, "Divide by zero"));
return_ACPI_STATUS (AE_AML_DIVIDE_BY_ZERO);
}
@@ -368,14 +368,14 @@ AcpiUtShortDivide (
UINT32 *OutRemainder)
{
- ACPI_FUNCTION_TRACE ("UtShortDivide");
+ ACPI_FUNCTION_TRACE (UtShortDivide);
/* Always check for a zero divisor */
if (Divisor == 0)
{
- ACPI_REPORT_ERROR (("AcpiUtShortDivide: Divide by zero\n"));
+ ACPI_ERROR ((AE_INFO, "Divide by zero"));
return_ACPI_STATUS (AE_AML_DIVIDE_BY_ZERO);
}
@@ -400,14 +400,14 @@ AcpiUtDivide (
ACPI_INTEGER *OutQuotient,
ACPI_INTEGER *OutRemainder)
{
- ACPI_FUNCTION_TRACE ("UtDivide");
+ ACPI_FUNCTION_TRACE (UtDivide);
/* Always check for a zero divisor */
if (InDivisor == 0)
{
- ACPI_REPORT_ERROR (("AcpiUtDivide: Divide by zero\n"));
+ ACPI_ERROR ((AE_INFO, "Divide by zero"));
return_ACPI_STATUS (AE_AML_DIVIDE_BY_ZERO);
}
OpenPOWER on IntegriCloud