qcacld-3.0: Let compiler resolve hif_device_id type

hif_device_id type is a opaque pointer that abstracts out
some of the pci data structures.

Change-Id: Ib472490b9de26cae291f86fd0e3c05af40e6951e
CRs-Fixed: 986480
diff --git a/core/hdd/src/wlan_hdd_driver_ops.c b/core/hdd/src/wlan_hdd_driver_ops.c
index 9c08deb..0077b66 100644
--- a/core/hdd/src/wlan_hdd_driver_ops.c
+++ b/core/hdd/src/wlan_hdd_driver_ops.c
@@ -815,7 +815,7 @@
 int wlan_hdd_pci_reinit(struct pci_dev *pdev,
 	const struct pci_device_id *id)
 {
-	return wlan_hdd_probe(&pdev->dev, pdev, id,
+	return wlan_hdd_probe(&pdev->dev, pdev, (void *)id,
 			QDF_BUS_TYPE_PCI, true);
 }