summaryrefslogtreecommitdiff
path: root/source/components/tables/tbxfroot.c
diff options
context:
space:
mode:
authorrmoore1 <rmoore1>2006-04-25 17:46:08 +0000
committerrmoore1 <rmoore1>2006-04-25 17:46:08 +0000
commitce9398502654383066407fc72e51916ea0dae50a (patch)
treec3e9d9c9715e6dcc393f91ebca2f1a0060e4e4e6 /source/components/tables/tbxfroot.c
parent50c2ae4128d015af44492de7f65fab27800841ce (diff)
downloadacpica-ce9398502654383066407fc72e51916ea0dae50a.tar.gz
Fix warnings on IA64
Diffstat (limited to 'source/components/tables/tbxfroot.c')
-rw-r--r--source/components/tables/tbxfroot.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/components/tables/tbxfroot.c b/source/components/tables/tbxfroot.c
index 53311ca2e..de849be97 100644
--- a/source/components/tables/tbxfroot.c
+++ b/source/components/tables/tbxfroot.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: tbxfroot - Find the root ACPI table (RSDT)
- * $Revision: 1.101 $
+ * $Revision: 1.102 $
*
*****************************************************************************/
@@ -689,7 +689,7 @@ AcpiTbFindRsdp (
{
/* Return the physical address */
- PhysicalAddress += ACPI_PTR_DIFF (MemRover, TablePtr);
+ PhysicalAddress += (UINT32) ACPI_PTR_DIFF (MemRover, TablePtr);
TableInfo->PhysicalAddress =
(ACPI_PHYSICAL_ADDRESS) PhysicalAddress;
@@ -720,8 +720,8 @@ AcpiTbFindRsdp (
{
/* Return the physical address */
- PhysicalAddress =
- ACPI_HI_RSDP_WINDOW_BASE + ACPI_PTR_DIFF (MemRover, TablePtr);
+ PhysicalAddress = (UINT32)
+ (ACPI_HI_RSDP_WINDOW_BASE + ACPI_PTR_DIFF (MemRover, TablePtr));
TableInfo->PhysicalAddress =
(ACPI_PHYSICAL_ADDRESS) PhysicalAddress;