Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

media: rcar-isp: Add family compatible for R-Car Gen4 family

Add the Gen4 family compatible. This will be used instead of a SoC
specific compatible for the new Gen4 SoC V4M. Two Gen4 boards (V3U and
V4H) have already been added prior and their bindings need to be kept
for backward compatibility.

Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>

authored by

Niklas Söderlund and committed by
Mauro Carvalho Chehab
59ba2cd3 f367e313

+3 -1
+3 -1
drivers/media/platform/renesas/rcar-isp.c
··· 431 431 static const struct of_device_id risp_of_id_table[] = { 432 432 { .compatible = "renesas,r8a779a0-isp" }, 433 433 { .compatible = "renesas,r8a779g0-isp" }, 434 - { /* sentinel */ }, 434 + /* Keep above for compatibility with old DTB files. */ 435 + { .compatible = "renesas,rcar-gen4-isp" }, 436 + { /* sentinel */ } 435 437 }; 436 438 MODULE_DEVICE_TABLE(of, risp_of_id_table); 437 439