Sfoglia il codice sorgente

qcacld-3.0: Correct the dev pointer provided in pld_usb

Correct the dev pointer provided in pld_usb_is_fw_down.

Change-Id: Ibc5569c2ae1645813ef2e197c7ad525320312113
CRs-fixed: 2433662
Jayachandran Sreekumaran 6 anni fa
parent
commit
df553017a5
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. 3 1
      core/pld/src/pld_common.c

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

@@ -1623,6 +1623,7 @@ int pld_is_fw_down(struct device *dev)
 {
 	int ret = 0;
 	enum pld_bus_type type = pld_get_bus_type(dev);
+	struct device *ifdev;
 
 	switch (type) {
 	case PLD_BUS_TYPE_SNOC:
@@ -1634,7 +1635,8 @@ int pld_is_fw_down(struct device *dev)
 	case PLD_BUS_TYPE_SDIO:
 		break;
 	case PLD_BUS_TYPE_USB:
-		ret = pld_usb_is_fw_down(dev);
+		ifdev = pld_get_if_dev(dev);
+		ret = pld_usb_is_fw_down(ifdev);
 		break;
 	default:
 		pr_err("Invalid device type %d\n", type);