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

Commit 20a98acb authored by Jyri Sarha's avatar Jyri Sarha
Browse files

drm/tilcdc: Fix tilcdc component master unloading



Fix tilcdc component master unloading. If a subcomponent module
(tda998x in this case) is unloaded before its master (tilcdc in this
case), it calls drm_put_dev() and it should not be called again by
the master when its module is unloaded. However component_master_del()
must still be called and the check if the drm_put_dev() has been
called must be in component_master_ops unbind() callback, not in
platform_driver remove() callback.

Signed-off-by: default avatarJyri Sarha <jsarha@ti.com>
parent 10a55a18
Loading
Loading
Loading
Loading
+13 −9
Original line number Diff line number Diff line
@@ -651,6 +651,12 @@ static int tilcdc_bind(struct device *dev)

static void tilcdc_unbind(struct device *dev)
{
	struct drm_device *ddev = dev_get_drvdata(dev);

	/* Check if a subcomponent has already triggered the unloading. */
	if (!ddev->dev_private)
		return;

	drm_put_dev(dev_get_drvdata(dev));
}

@@ -683,17 +689,15 @@ static int tilcdc_pdev_probe(struct platform_device *pdev)

static int tilcdc_pdev_remove(struct platform_device *pdev)
{
	struct drm_device *ddev = dev_get_drvdata(&pdev->dev);
	struct tilcdc_drm_private *priv = ddev->dev_private;

	/* Check if a subcomponent has already triggered the unloading. */
	if (!priv)
		return 0;
	int ret;

	if (priv->is_componentized)
		component_master_del(&pdev->dev, &tilcdc_comp_ops);
	else
	ret = tilcdc_get_external_components(&pdev->dev, NULL);
	if (ret < 0)
		return ret;
	else if (ret == 0)
		drm_put_dev(platform_get_drvdata(pdev));
	else
		component_master_del(&pdev->dev, &tilcdc_comp_ops);

	return 0;
}