Browse Source

gpu: ipu-v3: default to id 0 on missing OF alias

This is better than storing -ENODEV in the id number. This fixes SoCs
with only one IPU that don't specify an IPU alias in the device tree.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Philipp Zabel 7 years ago
parent
commit
2d87e6c1b9
1 changed files with 2 additions and 0 deletions
  1. 2 0
      drivers/gpu/ipu-v3/ipu-common.c

+ 2 - 0
drivers/gpu/ipu-v3/ipu-common.c

@@ -1401,6 +1401,8 @@ static int ipu_probe(struct platform_device *pdev)
 		return -ENODEV;
 
 	ipu->id = of_alias_get_id(np, "ipu");
+	if (ipu->id < 0)
+		ipu->id = 0;
 
 	if (of_device_is_compatible(np, "fsl,imx6qp-ipu") &&
 	    IS_ENABLED(CONFIG_DRM)) {