diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-01-27 04:21:19 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-01-27 04:21:19 +0000 |
commit | 710a3409113ebf372afb6a5dcd76b270de2f9312 (patch) | |
tree | de48ba74629670c49da781c761bece24cd189a08 /MdePkg/Include/IndustryStandard | |
parent | bf2f1720f31d3c7adac26ebbe7b099e3d1b81793 (diff) | |
download | edk2-platforms-710a3409113ebf372afb6a5dcd76b270de2f9312.tar.xz |
Fix incorrect array size
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9835 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/IndustryStandard')
-rw-r--r-- | MdePkg/Include/IndustryStandard/Atapi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Include/IndustryStandard/Atapi.h b/MdePkg/Include/IndustryStandard/Atapi.h index 695e5cf25d..276d364e67 100644 --- a/MdePkg/Include/IndustryStandard/Atapi.h +++ b/MdePkg/Include/IndustryStandard/Atapi.h @@ -146,7 +146,7 @@ typedef struct { UINT16 logic_sector_size_hi; ///< word 118
UINT16 features_and_command_sets_supported_ext; ///< word 119
UINT16 features_and_command_sets_enabled_ext; ///< word 120
- UINT16 reserved_121_126[8];
+ UINT16 reserved_121_126[6];
UINT16 obsolete_127;
UINT16 security_status; ///< word 128
UINT16 vendor_specific_129_159[31];
|