media: camss: ispif: Remove redundant dev_err call in msm_ispif_subdev_init()

There is a error message within devm_ioremap_resource
already, so remove the dev_err call to avoid redundant
error message.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Reviewed-by: Robert Foss <robert.foss@linaro.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Yang Yingliang 2021-04-09 07:06:33 +02:00 committed by Mauro Carvalho Chehab
parent 5f58ac04f3
commit a24bbbf24d

View File

@ -1145,17 +1145,13 @@ int msm_ispif_subdev_init(struct camss *camss,
r = platform_get_resource_byname(pdev, IORESOURCE_MEM, res->reg[0]);
ispif->base = devm_ioremap_resource(dev, r);
if (IS_ERR(ispif->base)) {
dev_err(dev, "could not map memory\n");
if (IS_ERR(ispif->base))
return PTR_ERR(ispif->base);
}
r = platform_get_resource_byname(pdev, IORESOURCE_MEM, res->reg[1]);
ispif->base_clk_mux = devm_ioremap_resource(dev, r);
if (IS_ERR(ispif->base_clk_mux)) {
dev_err(dev, "could not map memory\n");
if (IS_ERR(ispif->base_clk_mux))
return PTR_ERR(ispif->base_clk_mux);
}
/* Interrupt */