x86/kvm/vmx: remove unused variable in segment_base()

The pointer 'struct desc_struct *d' is unused since commit 8c2e41f7ae12
("x86/kvm/vmx: Simplify segment_base()") so let's remove it.

Signed-off-by: Jérémy Lefaure <jeremy.lefaure@lse.epita.fr>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>

authored by Jérémy Lefaure and committed by Radim Krčmář 0fce546f 0eb1d0fa

-1
-1
arch/x86/kvm/vmx.c
··· 2053 2053 static unsigned long segment_base(u16 selector) 2054 2054 { 2055 2055 struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); 2056 - struct desc_struct *d; 2057 2056 struct desc_struct *table; 2058 2057 unsigned long v; 2059 2058