summaryrefslogtreecommitdiff
path: root/source/components/tables
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2013-05-02 12:03:50 -0700
committerRobert Moore <Robert.Moore@intel.com>2013-05-02 12:03:50 -0700
commit02fe96717e3d776e070eebf6ed517ca35946b22d (patch)
treef76adfb7c21ed76099c4642c723d65c096579429 /source/components/tables
parentfad0d289af10cfb5434c2bb11d43418f94493291 (diff)
downloadacpica-02fe96717e3d776e070eebf6ed517ca35946b22d.tar.gz
Update interface to AcpiUtValidAcpiName.
Clean up the interface by making the input argument a char * string instead of a UINT32 name. This is easier to use for all callers and eliminates casting to *(UINT32*)
Diffstat (limited to 'source/components/tables')
-rw-r--r--source/components/tables/tbinstal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/components/tables/tbinstal.c b/source/components/tables/tbinstal.c
index 527e067bf..a67e26dc4 100644
--- a/source/components/tables/tbinstal.c
+++ b/source/components/tables/tbinstal.c
@@ -232,7 +232,7 @@ AcpiTbAddTable (
ACPI_BIOS_ERROR ((AE_INFO,
"Table has invalid signature [%4.4s] (0x%8.8X), "
"must be SSDT or OEMx",
- AcpiUtValidAcpiName (*(UINT32 *) TableDesc->Pointer->Signature) ?
+ AcpiUtValidAcpiName (TableDesc->Pointer->Signature) ?
TableDesc->Pointer->Signature : "????",
*(UINT32 *) TableDesc->Pointer->Signature));