aboutsummaryrefslogtreecommitdiff
path: root/os_specific
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2010-01-21 20:56:18 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2010-01-21 20:56:18 +0000
commitf154176708d42f8a4778e3cf4b55e45b4a2be545 (patch)
tree4b6b1812ecf638d285ab3b645feee1416d0f343b /os_specific
parentdeca274c44eb2d731761ba35813f64bdbdc734df (diff)
downloadsrc-f154176708d42f8a4778e3cf4b55e45b4a2be545.tar.gz
src-f154176708d42f8a4778e3cf4b55e45b4a2be545.zip
Import ACPICA 20100121.vendor/acpica/20100121
Notes
Notes: svn path=/vendor-sys/acpica/dist/; revision=202766 svn path=/vendor-sys/acpica/20100121/; revision=202768; tag=vendor/acpica/20100121
Diffstat (limited to 'os_specific')
-rw-r--r--os_specific/service_layers/osunixdir.c6
-rw-r--r--os_specific/service_layers/osunixxf.c6
-rw-r--r--os_specific/service_layers/oswindir.c2
-rw-r--r--os_specific/service_layers/oswintbl.c2
-rw-r--r--os_specific/service_layers/oswinxf.c6
5 files changed, 11 insertions, 11 deletions
diff --git a/os_specific/service_layers/osunixdir.c b/os_specific/service_layers/osunixdir.c
index d9c55a1ef84a..897d17340b9f 100644
--- a/os_specific/service_layers/osunixdir.c
+++ b/os_specific/service_layers/osunixdir.c
@@ -9,7 +9,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -295,11 +295,11 @@ strlwr (
int i;
- length = strlen(str);
+ length = strlen (str);
for (i = 0; i < length; i++)
{
- str[i] = tolower(str[i]);
+ str[i] = tolower ((int) str[i]);
}
return (str);
diff --git a/os_specific/service_layers/osunixxf.c b/os_specific/service_layers/osunixxf.c
index b430e83f1600..e62ed738be1a 100644
--- a/os_specific/service_layers/osunixxf.c
+++ b/os_specific/service_layers/osunixxf.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -871,7 +871,7 @@ AcpiOsStall (
void
AcpiOsSleep (
- ACPI_INTEGER milliseconds)
+ UINT64 milliseconds)
{
sleep (milliseconds / 1000); /* Sleep for whole seconds */
@@ -976,7 +976,7 @@ ACPI_STATUS
AcpiOsWritePciConfiguration (
ACPI_PCI_ID *PciId,
UINT32 Register,
- ACPI_INTEGER Value,
+ UINT64 Value,
UINT32 Width)
{
diff --git a/os_specific/service_layers/oswindir.c b/os_specific/service_layers/oswindir.c
index 445813d7b79c..1c7df069ffa6 100644
--- a/os_specific/service_layers/oswindir.c
+++ b/os_specific/service_layers/oswindir.c
@@ -9,7 +9,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
diff --git a/os_specific/service_layers/oswintbl.c b/os_specific/service_layers/oswintbl.c
index 889582ff7541..30d7ba66b9c7 100644
--- a/os_specific/service_layers/oswintbl.c
+++ b/os_specific/service_layers/oswintbl.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
diff --git a/os_specific/service_layers/oswinxf.c b/os_specific/service_layers/oswinxf.c
index 166e5e250adc..c932c2ca6c96 100644
--- a/os_specific/service_layers/oswinxf.c
+++ b/os_specific/service_layers/oswinxf.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -1146,7 +1146,7 @@ AcpiOsStall (
void
AcpiOsSleep (
- ACPI_INTEGER milliseconds)
+ UINT64 milliseconds)
{
/* Add 10ms to account for clock tick granularity */
@@ -1224,7 +1224,7 @@ ACPI_STATUS
AcpiOsWritePciConfiguration (
ACPI_PCI_ID *PciId,
UINT32 Register,
- ACPI_INTEGER Value,
+ UINT64 Value,
UINT32 Width)
{