summaryrefslogtreecommitdiff
path: root/source/compiler/aslmapoutput.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/compiler/aslmapoutput.c')
-rw-r--r--source/compiler/aslmapoutput.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/compiler/aslmapoutput.c b/source/compiler/aslmapoutput.c
index c8d8c68dfb3e..07ed89a1eb59 100644
--- a/source/compiler/aslmapoutput.c
+++ b/source/compiler/aslmapoutput.c
@@ -207,7 +207,7 @@ MpEmitGpioInfo (
/* Print header info for the controller itself */
if (!PrevDeviceName ||
- ACPI_STRCMP (PrevDeviceName, Info->DeviceName))
+ strcmp (PrevDeviceName, Info->DeviceName))
{
FlPrintFile (ASL_FILE_MAP_OUTPUT,
"\n\nGPIO Controller: %-8s %-28s",
@@ -360,7 +360,7 @@ MpEmitSerialInfo (
/* Print header info for the controller itself */
if (!PrevDeviceName ||
- ACPI_STRCMP (PrevDeviceName, Info->DeviceName))
+ strcmp (PrevDeviceName, Info->DeviceName))
{
FlPrintFile (ASL_FILE_MAP_OUTPUT, "\n\n%s Controller: ",
Type);