Commit 7d526fcf authored by Archit Taneja's avatar Archit Taneja Committed by Rob Clark

drm/msm: Create separate funcs for adding display/gpu components

Simplifies some of the code that we'll add later.
Signed-off-by: default avatarArchit Taneja <architt@codeaurora.org>
Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
parent 7c8f0235
......@@ -823,6 +823,18 @@ static int add_components(struct device *dev, struct component_match **matchptr,
return 0;
}
static int add_display_components(struct device *dev,
struct component_match **matchptr)
{
return add_components(dev, matchptr, "connectors");
}
static int add_gpu_components(struct device *dev,
struct component_match **matchptr)
{
return add_components(dev, matchptr, "gpus");
}
static int msm_drm_bind(struct device *dev)
{
return msm_drm_init(dev, &msm_driver);
......@@ -845,9 +857,15 @@ static const struct component_master_ops msm_drm_ops = {
static int msm_pdev_probe(struct platform_device *pdev)
{
struct component_match *match = NULL;
int ret;
ret = add_display_components(&pdev->dev, &match);
if (ret)
return ret;
add_components(&pdev->dev, &match, "connectors");
add_components(&pdev->dev, &match, "gpus");
ret = add_gpu_components(&pdev->dev, &match);
if (ret)
return ret;
pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
return component_master_add_with_match(&pdev->dev, &msm_drm_ops, match);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment