Revision: 14695
          http://sourceforge.net/p/edk2/code/14695
Author:   erictian
Date:     2013-09-23 02:10:58 +0000 (Mon, 23 Sep 2013)
Log Message:
-----------
MdeModulePkg/NvmExpressDxe: Fix an issue of potential uninitialized local 
variable

Signed-off-by: Feng Tian <[email protected]>
Reviewed-by: Star Zeng <[email protected]>

Modified Paths:
--------------
    trunk/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressHci.c

Modified: trunk/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressHci.c
===================================================================
--- trunk/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressHci.c       
2013-09-23 02:00:24 UTC (rev 14694)
+++ trunk/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressHci.c       
2013-09-23 02:10:58 UTC (rev 14695)
@@ -842,8 +842,10 @@
   //
   // set number of entries admin submission & completion queues.
   //
-  Aqa.Asqs = NVME_ASQ_SIZE;
-  Aqa.Acqs = NVME_ACQ_SIZE;
+  Aqa.Asqs  = NVME_ASQ_SIZE;
+  Aqa.Rsvd1 = 0;
+  Aqa.Acqs  = NVME_ACQ_SIZE;
+  Aqa.Rsvd2 = 0;
 
   //
   // Address of admin submission queue.

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.99!
1,500+ hours of tutorials including VisualStudio 2012, Windows 8, SharePoint
2013, SQL 2012, MVC 4, more. BEST VALUE: New Multi-Library Power Pack includes
Mobile, Cloud, Java, and UX Design. Lowest price ever! Ends 9/20/13. 
http://pubads.g.doubleclick.net/gampad/clk?id=58041151&iu=/4140/ostg.clktrk
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to