Skip to content

Commit 6a1c59a

Browse files
geertugregkh
authored andcommitted
media: fdp1: Reduce FCP not found message level to debug
[ Upstream commit 4fd2293 ] When support for the IPMMU is not enabled, the FDP driver may be probe-deferred multiple times, causing several messages to be printed like: rcar_fdp1 fe940000.fdp1: FCP not found (-517) rcar_fdp1 fe944000.fdp1: FCP not found (-517) Fix this by reducing the message level to debug level, as is done in the VSP1 driver. Fixes: 4710b75 ("[media] v4l: Add Renesas R-Car FDP1 Driver") Signed-off-by: Geert Uytterhoeven <[email protected]> Reviewed-by: Kieran Bingham <[email protected]> Signed-off-by: Hans Verkuil <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent e3f5f62 commit 6a1c59a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/media/platform/rcar_fdp1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2306,7 +2306,7 @@ static int fdp1_probe(struct platform_device *pdev)
23062306
fdp1->fcp = rcar_fcp_get(fcp_node);
23072307
of_node_put(fcp_node);
23082308
if (IS_ERR(fdp1->fcp)) {
2309-
dev_err(&pdev->dev, "FCP not found (%ld)\n",
2309+
dev_dbg(&pdev->dev, "FCP not found (%ld)\n",
23102310
PTR_ERR(fdp1->fcp));
23112311
return PTR_ERR(fdp1->fcp);
23122312
}

0 commit comments

Comments
 (0)