// irb.h
VOID AtaPortDeviceReady(
[in] PVOID ChannelExtension,
[in] UCHAR TargetId,
[in] UCHAR Lun
);
View the official Windows Driver Kit DDI reference
No description available.
The AtaPortDeviceReady routine informs the port driver that the indicated device is ready to accept new requests.
Note The ATA port driver and ATA miniport driver models may be altered or unavailable in the future. Instead, we recommend using the Storport driver and Storport miniport driver models.
ChannelExtension
[in]A pointer to the channel extension.
TargetId
[in]Specifies the target identifier of the device.
Lun
[in]Specifies the logical unit number (LUN) of the device.
The port driver resumes the paused request queue for the indicated device. If the caller assigns a wildcard value of IDE_UNTAGGED to parameters TargetId and Lun, the port driver will restart the channel request queue.