diff options
author | Star Zeng <star.zeng@intel.com> | 2013-06-13 09:07:42 +0000 |
---|---|---|
committer | lzeng14 <lzeng14@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-06-13 09:07:42 +0000 |
commit | 97733405f271fff760996773b3698aba92afee63 (patch) | |
tree | aafdbe3bc1fb18c643cdce4a6596a37a6f726323 /Nt32Pkg | |
parent | f120674bf9eb094d0865298a09f448d49bd6683f (diff) | |
download | edk2-97733405f271fff760996773b3698aba92afee63.zip edk2-97733405f271fff760996773b3698aba92afee63.tar.gz edk2-97733405f271fff760996773b3698aba92afee63.tar.bz2 |
Use correct pointer to install DevicePath protocol.
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14402 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg')
-rw-r--r-- | Nt32Pkg/FvbServicesRuntimeDxe/FWBlockService.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Nt32Pkg/FvbServicesRuntimeDxe/FWBlockService.c b/Nt32Pkg/FvbServicesRuntimeDxe/FWBlockService.c index 67d88c6..00a5f18 100644 --- a/Nt32Pkg/FvbServicesRuntimeDxe/FWBlockService.c +++ b/Nt32Pkg/FvbServicesRuntimeDxe/FWBlockService.c @@ -1,6 +1,6 @@ /**@file
-Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -1335,7 +1335,7 @@ Returns: &gEfiFirmwareVolumeBlockProtocolGuid,
&FvbDevice->FwVolBlockInstance,
&gEfiDevicePathProtocolGuid,
- &FvbDevice->DevicePath,
+ FvbDevice->DevicePath,
NULL
);
ASSERT_EFI_ERROR (Status);
|