Refine code to follow coding style.

Signed-off-by: Eric Dong <eric.dong@intel.com>





git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14080 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
ydong10 2013-01-24 08:46:59 +00:00
parent 03ecb5769b
commit cc7f6cf32f
1 changed files with 4 additions and 4 deletions

View File

@ -1797,14 +1797,14 @@ DriverSampleInit (
MY_EFI_VARSTORE_DATA *VarStoreConfig; MY_EFI_VARSTORE_DATA *VarStoreConfig;
EFI_INPUT_KEY HotKey; EFI_INPUT_KEY HotKey;
EFI_FORM_BROWSER_EXTENSION_PROTOCOL *FormBrowserEx; EFI_FORM_BROWSER_EXTENSION_PROTOCOL *FormBrowserEx;
EFI_DEVICE_PATH_TO_TEXT_PROTOCOL *pToText; EFI_DEVICE_PATH_TO_TEXT_PROTOCOL *PathToText;
// //
// Initialize the local variables. // Initialize the local variables.
// //
ConfigRequestHdr = NULL; ConfigRequestHdr = NULL;
NewString = NULL; NewString = NULL;
pToText = NULL; PathToText = NULL;
// //
// Initialize screen dimensions for SendForm(). // Initialize screen dimensions for SendForm().
@ -1925,14 +1925,14 @@ DriverSampleInit (
Status = gBS->LocateProtocol ( Status = gBS->LocateProtocol (
&gEfiDevicePathToTextProtocolGuid, &gEfiDevicePathToTextProtocolGuid,
NULL, NULL,
(VOID **) &pToText (VOID **) &PathToText
); );
ASSERT_EFI_ERROR (Status); ASSERT_EFI_ERROR (Status);
// //
// Update the device path string. // Update the device path string.
// //
NewString = pToText->ConvertDevicePathToText((EFI_DEVICE_PATH_PROTOCOL*)&mHiiVendorDevicePath0, FALSE, FALSE); NewString = PathToText->ConvertDevicePathToText((EFI_DEVICE_PATH_PROTOCOL*)&mHiiVendorDevicePath0, FALSE, FALSE);
if (HiiSetString (HiiHandle[0], STRING_TOKEN (STR_DEVICE_PATH), NewString, NULL) == 0) { if (HiiSetString (HiiHandle[0], STRING_TOKEN (STR_DEVICE_PATH), NewString, NULL) == 0) {
DriverSampleUnload (ImageHandle); DriverSampleUnload (ImageHandle);
return EFI_OUT_OF_RESOURCES; return EFI_OUT_OF_RESOURCES;