Home | History | Annotate | Download | only in compiler

Lines Matching defs:Info

188  *              Creates new GPIO info blocks, one for each pin defined by the
201 ACPI_GPIO_INFO *Info;
212 /* Create an info block for each pin defined in the descriptor */
216 Info = MpCreateGpioInfo (PinList[i], DeviceName);
218 Info->Op = Op;
219 Info->DeviceName = DeviceName;
220 Info->PinCount = PinCount;
221 Info->PinIndex = i;
222 Info->PinNumber = PinList[i];
223 Info->Type = Resource->Gpio.ConnectionType;
224 Info->Direction = (UINT8) (Resource->Gpio.IntFlags & 0x0003); /* _IOR, for IO descriptor */
225 Info->Polarity = (UINT8) ((Resource->Gpio.IntFlags >> 1) & 0x0003); /* _POL, for INT descriptor */
241 * Creates a new serial info block.
251 ACPI_SERIAL_INFO *Info;
294 Info = MpCreateSerialInfo (DeviceName, Address);
296 Info->Op = Op;
297 Info->DeviceName = DeviceName;
298 Info->Resource = Resource;
299 Info->Address = Address;
300 Info->Speed = Speed;
311 * RETURN: New GPIO info block.
313 * DESCRIPTION: Create a new GPIO info block and place it on the global list.
324 ACPI_GPIO_INFO *Info;
331 * Allocate a new info block and insert it into the global GPIO list
336 Info = ACPI_CAST_PTR (ACPI_GPIO_INFO, Buffer);
342 AslGbl_GpioList = Info;
343 Info->Next = NULL;
344 return (Info);
370 PrevGpio->Next = Info;
374 AslGbl_GpioList = Info;
377 Info->Next = NextGpio;
378 return (Info);
389 * RETURN: New Serial info block.
391 * DESCRIPTION: Create a new Serial info block and place it on the global list.
402 ACPI_SERIAL_INFO *Info;
409 * Allocate a new info block and insert it into the global Serial list
413 Info = ACPI_CAST_PTR (ACPI_SERIAL_INFO, Buffer);
419 AslGbl_SerialList = Info;
420 Info->Next = NULL;
421 return (Info);
447 PrevSerial->Next = Info;
451 AslGbl_SerialList = Info;
454 Info->Next = NextSerial;
455 return (Info);