@@ -28,7 +28,7 @@ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
2828ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929
3030**/
31-
31+
3232#include "SettingsManager.h"
3333
3434DFCI_SETTING_ACCESS_PROTOCOL mSystemSettingAccessProtocol = {SystemSettingAccessSet ,SystemSettingAccessGet ,SystemSettingsAccessReset };
@@ -44,8 +44,7 @@ typedef struct {
4444static INIT_TABLE_ENTRY mInitTable []= {
4545DEVICE_ID_MANUFACTURER ,NULL ,
4646DEVICE_ID_PRODUCT_NAME ,NULL ,
47- DEVICE_ID_SERIAL_NUMBER ,NULL ,
48- DEVICE_ID_UUID ,NULL };
47+ DEVICE_ID_SERIAL_NUMBER ,NULL };
4948
5049// Settings manager does not support "Atomic" operations at this time. That means
5150// the delayed response and LKG handler are ignored, and the settings cannot be
@@ -187,11 +186,6 @@ SettingsManagerOnReadyToBoot (
187186 gotoNO_XML ;
188187 }
189188
190- Status = DfciIdSupportGetUuid (& mInitTable [3 ].Value ,NULL );
191- if (EFI_ERROR (Status )) {
192- gotoNO_XML ;
193- }
194-
195189Status = EFI_OUT_OF_RESOURCES ;
196190List = New_DeviceIdPacketNodeList ();
197191if (List == NULL ) {
@@ -278,8 +272,8 @@ Pass thru function for using the Auth Protocol to get auth and token
278272
279273@param[in] SignedData - Pointer to signed data
280274@param[in] SignedDataLen - Length of signed data
281- @param[in] Signature - Pointer to WIN_CERT_UEFI_GUID that contains the signature
282- @param[in,out] AuthToken - returned Auth Token. Caller must allocate. data only valid if success.
275+ @param[in] Signature - Pointer to WIN_CERT_UEFI_GUID that contains the signature
276+ @param[in,out] AuthToken - returned Auth Token. Caller must allocate. data only valid if success.
283277
284278**/
285279EFI_STATUS
@@ -292,7 +286,7 @@ CheckAuthAndGetToken(
292286 )
293287{
294288EFI_STATUS Status ;
295- //get mAuthProtocol
289+ //get mAuthProtocol
296290if (mAuthProtocol == NULL )
297291 {
298292Status = gBS -> LocateProtocol (
@@ -313,8 +307,8 @@ CheckAuthAndGetToken(
313307}
314308
315309/**
316- Pass thru function for using the Auth Protocol to dispose of an auth token
317- so it can no longer be used in the system.
310+ Pass thru function for using the Auth Protocol to dispose of an auth token
311+ so it can no longer be used in the system.
318312
319313@param[in] AuthToken - Pointer to auth token to dispose of
320314**/
@@ -330,7 +324,7 @@ AuthTokenDispose(
330324 }
331325
332326//Can't get here if mAuthProtocol is NULL
333- if (mAuthProtocol != NULL )
327+ if (mAuthProtocol != NULL )
334328 {
335329return mAuthProtocol -> DisposeAuthToken (mAuthProtocol ,AuthToken );
336330 }
@@ -356,8 +350,7 @@ Init (
356350{
357351EFI_EVENT InitEvent ;
358352EFI_STATUS Status ;
359-
360-
353+
361354//Install Setting Provider Support Protocol and Permission Protocol
362355Status = gBS -> InstallMultipleProtocolInterfaces (
363356& ImageHandle ,