Fix minor coding style issues.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9655 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
907c1a0039
commit
05a44e91fe
|
@ -34,8 +34,8 @@ EFI_DRIVER_BINDING_PROTOCOL gAtaBusDriverBinding = {
|
||||||
// Template for ATA Child Device.
|
// Template for ATA Child Device.
|
||||||
//
|
//
|
||||||
ATA_DEVICE gAtaDeviceTemplate = {
|
ATA_DEVICE gAtaDeviceTemplate = {
|
||||||
ATA_DEVICE_SIGNATURE, // Signature;
|
ATA_DEVICE_SIGNATURE, // Signature
|
||||||
NULL, // Handle;
|
NULL, // Handle
|
||||||
{ // BlockIo
|
{ // BlockIo
|
||||||
EFI_BLOCK_IO_PROTOCOL_REVISION,
|
EFI_BLOCK_IO_PROTOCOL_REVISION,
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -64,10 +64,10 @@ ATA_DEVICE gAtaDeviceTemplate = {
|
||||||
AtaDiskInfoSenseData,
|
AtaDiskInfoSenseData,
|
||||||
AtaDiskInfoWhichIde
|
AtaDiskInfoWhichIde
|
||||||
},
|
},
|
||||||
NULL, // DevicePath;
|
NULL, // DevicePath
|
||||||
NULL, // AtaBusDriverData;
|
NULL, // AtaBusDriverData
|
||||||
0, // Port,
|
0, // Port
|
||||||
0, // PortMultiplierPort;
|
0, // PortMultiplierPort
|
||||||
{ 0, }, // Packet
|
{ 0, }, // Packet
|
||||||
{{ 0}, }, // Acb
|
{{ 0}, }, // Acb
|
||||||
NULL, // Asb
|
NULL, // Asb
|
||||||
|
@ -106,7 +106,7 @@ AllocateAlignedBuffer (
|
||||||
This function frees an aligned buffer for the ATA device to perform
|
This function frees an aligned buffer for the ATA device to perform
|
||||||
ATA pass through operations.
|
ATA pass through operations.
|
||||||
|
|
||||||
@param AtaDevice The ATA child device involved for the operation.
|
@param Buffer The aligned buffer to be freed.
|
||||||
@param BufferSize The request buffer size.
|
@param BufferSize The request buffer size.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
@ -153,7 +153,7 @@ ReleaseAtaResources (
|
||||||
Then it will create child handle and install Block IO and Disk Info protocol on
|
Then it will create child handle and install Block IO and Disk Info protocol on
|
||||||
it.
|
it.
|
||||||
|
|
||||||
@param AtaDevice The ATA child device involved for the operation.
|
@param AtaBusDriverData The parent ATA bus driver data structure.
|
||||||
@param Port The port number of the ATA device.
|
@param Port The port number of the ATA device.
|
||||||
@param PortMultiplierPort The port multiplier port number of the ATA device.
|
@param PortMultiplierPort The port multiplier port number of the ATA device.
|
||||||
|
|
||||||
|
@ -299,7 +299,7 @@ Done:
|
||||||
This function removes the protocols installed on the controller handle and
|
This function removes the protocols installed on the controller handle and
|
||||||
frees the resources allocated for the ATA device.
|
frees the resources allocated for the ATA device.
|
||||||
|
|
||||||
@param AtaDevice The ATA child device involved for the operation.
|
@param This The pointer to EFI_DRIVER_BINDING_PROTOCOL instance.
|
||||||
@param Controller The controller handle of the ATA device.
|
@param Controller The controller handle of the ATA device.
|
||||||
@param Handle The child handle.
|
@param Handle The child handle.
|
||||||
|
|
||||||
|
@ -787,6 +787,7 @@ AtaBlockIoReset (
|
||||||
responsible for reading/writing to only legitimate locations.
|
responsible for reading/writing to only legitimate locations.
|
||||||
@param BufferSize Size of Buffer, must be a multiple of device block size.
|
@param BufferSize Size of Buffer, must be a multiple of device block size.
|
||||||
@param Buffer A pointer to the destination/source buffer for the data.
|
@param Buffer A pointer to the destination/source buffer for the data.
|
||||||
|
@param IsWrite Indicates whether it is a write operation.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The data was read/written correctly to the device.
|
@retval EFI_SUCCESS The data was read/written correctly to the device.
|
||||||
@retval EFI_WRITE_PROTECTED The device can not be read/written to.
|
@retval EFI_WRITE_PROTECTED The device can not be read/written to.
|
||||||
|
|
Loading…
Reference in New Issue