drm/exynos: Remove redundant check in exynos_drm_fimd.c file
devm_request_and_ioremap function checks the validity of the pointer returned by platform_get_resource. Hence an additional check in the probe function is not necessary. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Inki Dae <inki.dae@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
This commit is contained in:
@@ -831,11 +831,6 @@ static int __devinit fimd_probe(struct platform_device *pdev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
if (!res) {
|
|
||||||
dev_err(dev, "failed to find registers\n");
|
|
||||||
ret = -ENOENT;
|
|
||||||
goto err_clk;
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx->regs = devm_request_and_ioremap(&pdev->dev, res);
|
ctx->regs = devm_request_and_ioremap(&pdev->dev, res);
|
||||||
if (!ctx->regs) {
|
if (!ctx->regs) {
|
||||||
|
Reference in New Issue
Block a user