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

Commit 0dbcf5d8 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "iommu/arm-smmu: Fix memory leak with respect to TBU data structures"

parents 2f4f9019 c7e9571e
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -5674,12 +5674,21 @@ static int qsmmuv500_tbu_probe(struct platform_device *pdev)
	return 0;
}

static int qsmmuv500_tbu_remove(struct platform_device *pdev)
{
	struct qsmmuv500_tbu_device *tbu = dev_get_drvdata(&pdev->dev);

	arm_smmu_exit_power_resources(tbu->pwr);
	return 0;
}

static struct platform_driver qsmmuv500_tbu_driver = {
	.driver	= {
		.name		= "qsmmuv500-tbu",
		.of_match_table	= of_match_ptr(qsmmuv500_tbu_of_match),
	},
	.probe	= qsmmuv500_tbu_probe,
	.remove = qsmmuv500_tbu_remove,
};

MODULE_DESCRIPTION("IOMMU API for ARM architected SMMU implementations");