Remove m_NumMemSlots member

Only used once

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Yuri Benditovich <yuri.benditovich@daynix.com>
This commit is contained in:
Frediano Ziglio 2017-03-29 14:36:49 +01:00
parent 1b674d86e2
commit 7e0642c3f2
2 changed files with 1 additions and 3 deletions

View File

@ -3545,11 +3545,10 @@ BOOL QxlDevice::InitMemSlots(void)
{ {
PAGED_CODE(); PAGED_CODE();
DbgPrint(TRACE_LEVEL_VERBOSE, ("---> %s\n", __FUNCTION__)); DbgPrint(TRACE_LEVEL_VERBOSE, ("---> %s\n", __FUNCTION__));
m_NumMemSlots = m_RomHdr->slots_end;
m_SlotGenBits = m_RomHdr->slot_gen_bits; m_SlotGenBits = m_RomHdr->slot_gen_bits;
m_SlotIdBits = m_RomHdr->slot_id_bits; m_SlotIdBits = m_RomHdr->slot_id_bits;
m_VaSlotMask = (~(uint64_t)0) >> (m_SlotIdBits + m_SlotGenBits); m_VaSlotMask = (~(uint64_t)0) >> (m_SlotIdBits + m_SlotGenBits);
size_t size = m_NumMemSlots * sizeof(MemSlot); size_t size = m_RomHdr->slots_end * sizeof(MemSlot);
m_MemSlots = reinterpret_cast<MemSlot*> m_MemSlots = reinterpret_cast<MemSlot*>
(new (PagedPool) BYTE[size]); (new (PagedPool) BYTE[size]);
if (m_MemSlots) if (m_MemSlots)

View File

@ -647,7 +647,6 @@ private:
ULONG m_RomSize; ULONG m_RomSize;
MemSlot *m_MemSlots; MemSlot *m_MemSlots;
UINT8 m_NumMemSlots;
UINT8 m_MainMemSlot; UINT8 m_MainMemSlot;
UINT8 m_SurfaceMemSlot; UINT8 m_SurfaceMemSlot;
UINT8 m_SlotIdBits; UINT8 m_SlotIdBits;