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

Commit 99c2af2c authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "coresight: stm: Wrong condition check in unlink function"

parents a1ee9ae0 9016b9ae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -297,7 +297,7 @@ static void stm_generic_unlink(struct stm_data *stm_data,
		return;

	/* If any OST entity is enabled do not disable the device */
	if (drvdata->entities)
	if (!bitmap_empty(drvdata->entities, OST_ENTITY_MAX))
		return;

	coresight_disable(drvdata->csdev);