aslmapoutput.c (98e0ffaefb0f241cda3a72395d3be04192ae0d47) aslmapoutput.c (5ef5072350492e3ee9aff4303789fc75972b5afe)
1/******************************************************************************
2 *
3 * Module Name: aslmapoutput - Output/emit the resource descriptor/device maps
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2015, Intel Corp.

--- 193 unchanged lines hidden (view full) ---

202 Info = Gbl_GpioList;
203 while (Info)
204 {
205 HidString = MpGetHidViaNamestring (Info->DeviceName);
206
207 /* Print header info for the controller itself */
208
209 if (!PrevDeviceName ||
1/******************************************************************************
2 *
3 * Module Name: aslmapoutput - Output/emit the resource descriptor/device maps
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2015, Intel Corp.

--- 193 unchanged lines hidden (view full) ---

202 Info = Gbl_GpioList;
203 while (Info)
204 {
205 HidString = MpGetHidViaNamestring (Info->DeviceName);
206
207 /* Print header info for the controller itself */
208
209 if (!PrevDeviceName ||
210 ACPI_STRCMP (PrevDeviceName, Info->DeviceName))
210 strcmp (PrevDeviceName, Info->DeviceName))
211 {
212 FlPrintFile (ASL_FILE_MAP_OUTPUT,
213 "\n\nGPIO Controller: %-8s %-28s",
214 HidString, Info->DeviceName);
215
216 HidInfo = AcpiAhMatchHardwareId (HidString);
217 if (HidInfo)
218 {

--- 136 unchanged lines hidden (view full) ---

355 break;
356 }
357
358 HidString = MpGetHidViaNamestring (Info->DeviceName);
359
360 /* Print header info for the controller itself */
361
362 if (!PrevDeviceName ||
211 {
212 FlPrintFile (ASL_FILE_MAP_OUTPUT,
213 "\n\nGPIO Controller: %-8s %-28s",
214 HidString, Info->DeviceName);
215
216 HidInfo = AcpiAhMatchHardwareId (HidString);
217 if (HidInfo)
218 {

--- 136 unchanged lines hidden (view full) ---

355 break;
356 }
357
358 HidString = MpGetHidViaNamestring (Info->DeviceName);
359
360 /* Print header info for the controller itself */
361
362 if (!PrevDeviceName ||
363 ACPI_STRCMP (PrevDeviceName, Info->DeviceName))
363 strcmp (PrevDeviceName, Info->DeviceName))
364 {
365 FlPrintFile (ASL_FILE_MAP_OUTPUT, "\n\n%s Controller: ",
366 Type);
367 FlPrintFile (ASL_FILE_MAP_OUTPUT, "%-8s %-28s",
368 HidString, Info->DeviceName);
369
370 HidInfo = AcpiAhMatchHardwareId (HidString);
371 if (HidInfo)

--- 271 unchanged lines hidden ---
364 {
365 FlPrintFile (ASL_FILE_MAP_OUTPUT, "\n\n%s Controller: ",
366 Type);
367 FlPrintFile (ASL_FILE_MAP_OUTPUT, "%-8s %-28s",
368 HidString, Info->DeviceName);
369
370 HidInfo = AcpiAhMatchHardwareId (HidString);
371 if (HidInfo)

--- 271 unchanged lines hidden ---