Get rid of unused variable warning in drivers/pci/hotplug/pci_hotplug_core.c

Commit 5a7ad7f044941316dc98eda2a087a12a7a50649d removed all uses of
'retval', but didn't remove the variable itself.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

-2
-2
drivers/pci/hotplug/pci_hotplug_core.c
··· 689 689 int __must_check pci_hp_change_slot_info(struct hotplug_slot *slot, 690 690 struct hotplug_slot_info *info) 691 691 { 692 - int retval; 693 - 694 692 if ((slot == NULL) || (info == NULL)) 695 693 return -ENODEV; 696 694