diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2018-09-27 16:43:02 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2018-09-27 16:43:02 +0000 |
commit | 73d55968743da26d1ff63e9939f191d217aea206 (patch) | |
tree | ffb27de4d7c207dd7aeebd04b24e04f85d23b8dc /source/compiler/aslmapoutput.c | |
parent | c6014c64fcfd099d0087da3509e8a623d2c30209 (diff) |
Notes
Diffstat (limited to 'source/compiler/aslmapoutput.c')
-rw-r--r-- | source/compiler/aslmapoutput.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/source/compiler/aslmapoutput.c b/source/compiler/aslmapoutput.c index 715634da72ba..baa2f6245049 100644 --- a/source/compiler/aslmapoutput.c +++ b/source/compiler/aslmapoutput.c @@ -237,24 +237,24 @@ MpEmitMappingInfo ( /* Mapfile option enabled? */ - if (!Gbl_MapfileFlag) + if (!AslGbl_MapfileFlag) { return; } - if (!Gbl_GpioList) + if (!AslGbl_GpioList) { FlPrintFile (ASL_FILE_MAP_OUTPUT, "\nNo GPIO devices found\n"); } - if (!Gbl_SerialList) + if (!AslGbl_SerialList) { FlPrintFile (ASL_FILE_MAP_OUTPUT, "\nNo Serial devices found (I2C/SPI/UART)\n"); } - if (!Gbl_GpioList && !Gbl_SerialList) + if (!AslGbl_GpioList && !AslGbl_SerialList) { return; } @@ -272,8 +272,8 @@ MpEmitMappingInfo ( /* Clear the lists - no need to free memory here */ - Gbl_SerialList = NULL; - Gbl_GpioList = NULL; + AslGbl_SerialList = NULL; + AslGbl_GpioList = NULL; } @@ -307,7 +307,7 @@ MpEmitGpioInfo ( /* Walk the GPIO descriptor list */ - Info = Gbl_GpioList; + Info = AslGbl_GpioList; while (Info) { HidString = MpGetHidViaNamestring (Info->DeviceName); @@ -440,7 +440,7 @@ MpEmitSerialInfo ( /* Walk the constructed serial descriptor list */ - Info = Gbl_SerialList; + Info = AslGbl_SerialList; while (Info) { Resource = Info->Resource; @@ -641,7 +641,7 @@ MpXrefDevices ( /* Walk the entire parse tree */ - TrWalkParseTree (Gbl_ParseTreeRoot, ASL_WALK_VISIT_DOWNWARD, + TrWalkParseTree (AslGbl_ParseTreeRoot, ASL_WALK_VISIT_DOWNWARD, MpNamespaceXrefBegin, NULL, Info); if (!Info->References) |