diff options
author | Guo Mang <mang.guo@intel.com> | 2017-08-21 16:25:34 +0800 |
---|---|---|
committer | Guo Mang <mang.guo@intel.com> | 2017-08-24 18:48:37 +0800 |
commit | efaf03e5c0ee734f8023932536e5c5d95da3ed75 (patch) | |
tree | 860696dcc5274e17523920bd538f8332ecfc9ea6 | |
parent | 9d80e9b52e262a8e64f3d2e39ce05b860e6f827f (diff) | |
download | edk2-platforms-efaf03e5c0ee734f8023932536e5c5d95da3ed75.tar.xz |
BroxtonPlatformPkg: Disable ISH
1. Disable ISH
2. Coding style
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Guo Mang <mang.guo@intel.com>
-rw-r--r-- | Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/SouthClusterConfig.vfi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/SouthClusterConfig.vfi b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/SouthClusterConfig.vfi index 866dff5298..35aeb34bf4 100644 --- a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/SouthClusterConfig.vfi +++ b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/SouthClusterConfig.vfi @@ -266,8 +266,8 @@ form formid = ISH_OPTIONS_FORM_ID, oneof varid = Setup.ScIshEnabled,
prompt = STRING_TOKEN(STR_ISH_PROMPT),
help = STRING_TOKEN(STR_ISH_HELP),
- option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
- option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED;
endoneof;
endform; // End of ISH Configurations
@@ -2395,7 +2395,7 @@ form formid = USB_OPTIONS_FORM_ID, prompt = STRING_TOKEN(STR_PCH_USB3_PORT5_PROMPT),
help = STRING_TOKEN(STR_PCH_USB_PORT_DIS_HELP),
option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
- option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
endoneof;
endif;
@@ -2411,7 +2411,7 @@ form formid = USB_OPTIONS_FORM_ID, prompt = STRING_TOKEN(STR_XHCI_COMPLIANCE_PROMPT),
help = STRING_TOKEN(STR_XHCI_COMPLIANCE_HELP),
option text = STRING_TOKEN(STR_XHCI_COMPLIANCE_FALSE), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
- option text = STRING_TOKEN(STR_XHCI_COMPLIANCE_TRUE), value = 1, flags = RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_XHCI_COMPLIANCE_TRUE), value = 1, flags = RESET_REQUIRED;
endoneof;
endform; // end of USB_OPTIONS_FORM_ID
@@ -2677,14 +2677,14 @@ form formid = HDAUDIO_OPTIONS_FORM_ID, prompt = STRING_TOKEN(STR_HDA_PROMPT),
help = STRING_TOKEN(STR_HDA_HELP),
option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
- option text = STRING_TOKEN(STR_ENABLE), value= 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
endoneof;
oneof varid = Setup.ScHdAudioDsp,
prompt = STRING_TOKEN(STR_HDA_DSP_PROMPT),
help = STRING_TOKEN(STR_HDA_DSP_HELP),
option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
- option text = STRING_TOKEN(STR_ENABLE), value= 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
endoneof;
suppressif ideqval Setup.ScHdAudioDsp == 0;
|