Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9d3c6952 authored by Arun Kumar Khandavalli's avatar Arun Kumar Khandavalli Committed by Gerrit - the friendly Code Review server
Browse files

qcacld-3.0: Stop dsc transaction in case of reinit failure

Incase of any error in the driver reinit the dsc transaction is
not stopped resulting in the timeout and system instability.

To mitigate the above issue, stop the dsc timeout incase of
reinit failure.

Change-Id: I59b37581a2e6909b61a32344ae9c4af2118558eb
CRs-Fixed: 2780376
parent df422dda
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -708,12 +708,11 @@ static int hdd_soc_recovery_reinit(struct device *dev,
		return errno;

	errno = __hdd_soc_recovery_reinit(dev, bdev, bid, bus_type);
	if (errno)
		return errno;


	osif_psoc_sync_trans_stop(psoc_sync);

	return 0;
	return errno;
}

static void __hdd_soc_remove(struct device *dev)