From: Sergei Shtylyov Date: Mon, 25 Jul 2016 19:19:33 +0000 (-0300) Subject: [media] rcar-vin: add R-Car gen2 fallback compatibility string X-Git-Tag: v4.9-rc1~43^2~11 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=c0bf09d047e18e9948a431f7662b20777e540d80;p=cascardo%2Flinux.git [media] rcar-vin: add R-Car gen2 fallback compatibility string Such fallback string is present in the 'soc_camera' version of the R-Car VIN driver, so need to add it here as well... Signed-off-by: Sergei Shtylyov Acked-by: Niklas Söderlund Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/rcar-vin/rcar-core.c b/drivers/media/platform/rcar-vin/rcar-core.c index 6219cbaea940..098a0b1cc10a 100644 --- a/drivers/media/platform/rcar-vin/rcar-core.c +++ b/drivers/media/platform/rcar-vin/rcar-core.c @@ -231,6 +231,7 @@ static const struct of_device_id rvin_of_id_table[] = { { .compatible = "renesas,vin-r8a7790", .data = (void *)RCAR_GEN2 }, { .compatible = "renesas,vin-r8a7779", .data = (void *)RCAR_H1 }, { .compatible = "renesas,vin-r8a7778", .data = (void *)RCAR_M1 }, + { .compatible = "renesas,rcar-gen2-vin", .data = (void *)RCAR_GEN2 }, { }, }; MODULE_DEVICE_TABLE(of, rvin_of_id_table);