Parcourir la source

qcacld-3.0: Get wifi kobject irrespective of bus type

Currently host driver gets the wifi kobject from platform
driver based on the bus type, since this is a generic
functionality and it can be used for any bus type,
so add a logic to get the wifi kobject irrespective of
bus type.

Change-Id: I58b18f0006494e0602ef3b00dc5728071c7a0306
CRs-Fixed: 3308565
Ashish Kumar Dhanotiya il y a 2 ans
Parent
commit
2b851b6680
1 fichiers modifiés avec 1 ajouts et 15 suppressions
  1. 1 15
      core/pld/src/pld_common.c

+ 1 - 15
core/pld/src/pld_common.c

@@ -2050,23 +2050,9 @@ void *pld_smmu_get_mapping(struct device *dev)
 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0))
 struct kobject *pld_get_wifi_kobj(struct device *dev)
 {
-	enum pld_bus_type type = pld_get_bus_type(dev);
 	struct kobject *wifi_kobj = NULL;
 
-	switch (type) {
-	case PLD_BUS_TYPE_SNOC:
-	case PLD_BUS_TYPE_PCIE_FW_SIM:
-	case PLD_BUS_TYPE_IPCI_FW_SIM:
-	case PLD_BUS_TYPE_SNOC_FW_SIM:
-	case PLD_BUS_TYPE_IPCI:
-		break;
-	case PLD_BUS_TYPE_PCIE:
-		wifi_kobj = pld_pcie_get_wifi_kobj(dev);
-		break;
-	default:
-		pr_err("Invalid device type %d\n", type);
-		break;
-	}
+	wifi_kobj = pld_pcie_get_wifi_kobj(dev);
 
 	return wifi_kobj;
 }