SecurityPkg: Remove double \r

Cc: Chao Zhang <chao.b.zhang@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Jian Wang <jian.j.wang@intel.com>
Signed-off-by: Joe Richey <joerichey@google.com>
Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
Reviewed-by : Chao Zhang <chao.b.zhang@intel.com>
This commit is contained in:
Joe Richey 2019-05-10 17:36:32 +08:00 committed by Jian J Wang
parent cf574f0a18
commit 4000f249ba
1 changed files with 2 additions and 2 deletions

View File

@ -1229,7 +1229,7 @@ EFI_STATUS
OpalDiskUpdateOwnerShip ( OpalDiskUpdateOwnerShip (
OPAL_DISK *OpalDisk OPAL_DISK *OpalDisk
) )
{ {
OPAL_SESSION Session; OPAL_SESSION Session;
if (OpalDisk->MsidLength == 0) { if (OpalDisk->MsidLength == 0) {
@ -1245,7 +1245,7 @@ OpalDiskUpdateOwnerShip (
Session.MediaId = OpalDisk->MediaId; Session.MediaId = OpalDisk->MediaId;
Session.OpalBaseComId = OpalDisk->OpalBaseComId; Session.OpalBaseComId = OpalDisk->OpalBaseComId;
OpalDisk->Owner = OpalUtilDetermineOwnership(&Session, OpalDisk->Msid, OpalDisk->MsidLength); OpalDisk->Owner = OpalUtilDetermineOwnership(&Session, OpalDisk->Msid, OpalDisk->MsidLength);
return EFI_SUCCESS; return EFI_SUCCESS;
} }