Revision: 14696
          http://sourceforge.net/p/edk2/code/14696
Author:   vanjeff
Date:     2013-09-23 03:24:38 +0000 (Mon, 23 Sep 2013)
Log Message:
-----------
Sync patch r14695 from main trunk.
MdeModulePkg/NvmExpressDxe: Fix an issue of potential uninitialized local 
variable.

Revision Links:
--------------
    http://sourceforge.net/p/edk2/code/14695

Modified Paths:
--------------
    branches/UDK2010.SR1/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressHci.c

Modified: 
branches/UDK2010.SR1/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressHci.c
===================================================================
--- branches/UDK2010.SR1/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressHci.c     
2013-09-23 02:10:58 UTC (rev 14695)
+++ branches/UDK2010.SR1/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressHci.c     
2013-09-23 03:24:38 UTC (rev 14696)
@@ -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