mirror of https://github.com/acidanthera/audk.git
Minor update on capitalization for ECC check.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7561 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
d73be1d1b1
commit
fbfa4a1da7
|
@ -1134,7 +1134,7 @@ DiscoverScsiDevice (
|
|||
// valid device type and peripheral qualifier combination.
|
||||
//
|
||||
ScsiIoDevice->ScsiDeviceType = InquiryData.Peripheral_Type;
|
||||
ScsiIoDevice->RemovableDevice = InquiryData.RMB;
|
||||
ScsiIoDevice->RemovableDevice = InquiryData.Rmb;
|
||||
if (InquiryData.Version == 0) {
|
||||
ScsiIoDevice->ScsiVersion = 0;
|
||||
} else {
|
||||
|
|
|
@ -1490,7 +1490,7 @@ ParseInquiryData (
|
|||
IN OUT SCSI_DISK_DEV *ScsiDiskDevice
|
||||
)
|
||||
{
|
||||
ScsiDiskDevice->FixedDevice = (BOOLEAN) ((ScsiDiskDevice->InquiryData.RMB == 1) ? 0 : 1);
|
||||
ScsiDiskDevice->FixedDevice = (BOOLEAN) ((ScsiDiskDevice->InquiryData.Rmb == 1) ? 0 : 1);
|
||||
ScsiDiskDevice->BlkIoMedia.RemovableMedia = (BOOLEAN) (!ScsiDiskDevice->FixedDevice);
|
||||
}
|
||||
|
||||
|
|
|
@ -199,7 +199,7 @@ typedef struct {
|
|||
UINT8 Peripheral_Type : 5;
|
||||
UINT8 Peripheral_Qualifier : 3;
|
||||
UINT8 DeviceType_Modifier : 7;
|
||||
UINT8 RMB : 1;
|
||||
UINT8 Rmb : 1;
|
||||
UINT8 Version;
|
||||
UINT8 Response_Data_Format;
|
||||
UINT8 Addnl_Length;
|
||||
|
@ -215,7 +215,7 @@ typedef struct {
|
|||
UINT8 Segment_Number;
|
||||
UINT8 Sense_Key : 4;
|
||||
UINT8 Reserved_21 : 1;
|
||||
UINT8 ILI : 1;
|
||||
UINT8 Ili : 1;
|
||||
UINT8 Reserved_22 : 2;
|
||||
UINT8 Information_3_6[4];
|
||||
UINT8 Addnl_Sense_Length; ///< Additional sense length (n-7)
|
||||
|
|
|
@ -287,7 +287,7 @@ typedef struct {
|
|||
SMBIOS_STRUCTURE Hdr;
|
||||
UINT8 InstallableLanguages;
|
||||
UINT8 Flags;
|
||||
UINT8 reserved[15];
|
||||
UINT8 Reserved[15];
|
||||
SMBIOS_TABLE_STRING CurrentLanguages;
|
||||
} SMBIOS_TABLE_TYPE13;
|
||||
|
||||
|
|
Loading…
Reference in New Issue