* [PATCH 1/2] media: soc_camera: rcar_vin: Add r8a7794 device support
2014-10-14 7:20 [PATCH 0/2] media: soc_camera: rcar_vin: Add r8a7794, r8a7793 device support Yoshihiro Kaneko
@ 2014-10-14 7:20 ` Yoshihiro Kaneko
2014-10-14 7:20 ` [PATCH 2/2] media: soc_camera: rcar_vin: Add r8a7793 " Yoshihiro Kaneko
` (2 subsequent siblings)
3 siblings, 0 replies; 7+ messages in thread
From: Yoshihiro Kaneko @ 2014-10-14 7:20 UTC (permalink / raw)
To: linux-media; +Cc: Guennadi Liakhovetski, Simon Horman, Magnus Damm, linux-sh
From: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
Signed-off-by: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
---
drivers/media/platform/soc_camera/rcar_vin.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/media/platform/soc_camera/rcar_vin.c b/drivers/media/platform/soc_camera/rcar_vin.c
index bf3588f..224604d0 100644
--- a/drivers/media/platform/soc_camera/rcar_vin.c
+++ b/drivers/media/platform/soc_camera/rcar_vin.c
@@ -1887,6 +1887,7 @@ MODULE_DEVICE_TABLE(of, rcar_vin_of_table);
#endif
static struct platform_device_id rcar_vin_id_table[] = {
+ { "r8a7794-vin", RCAR_GEN2 },
{ "r8a7791-vin", RCAR_GEN2 },
{ "r8a7790-vin", RCAR_GEN2 },
{ "r8a7779-vin", RCAR_H1 },
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] media: soc_camera: rcar_vin: Add r8a7793 device support
2014-10-14 7:20 [PATCH 0/2] media: soc_camera: rcar_vin: Add r8a7794, r8a7793 device support Yoshihiro Kaneko
2014-10-14 7:20 ` [PATCH 1/2] media: soc_camera: rcar_vin: Add r8a7794 " Yoshihiro Kaneko
@ 2014-10-14 7:20 ` Yoshihiro Kaneko
2014-10-16 5:19 ` [PATCH 0/2] media: soc_camera: rcar_vin: Add r8a7794, " Simon Horman
2014-10-16 20:27 ` Guennadi Liakhovetski
3 siblings, 0 replies; 7+ messages in thread
From: Yoshihiro Kaneko @ 2014-10-14 7:20 UTC (permalink / raw)
To: linux-media; +Cc: Guennadi Liakhovetski, Simon Horman, Magnus Damm, linux-sh
From: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
Signed-off-by: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
---
drivers/media/platform/soc_camera/rcar_vin.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/media/platform/soc_camera/rcar_vin.c b/drivers/media/platform/soc_camera/rcar_vin.c
index 224604d0..55f99aa 100644
--- a/drivers/media/platform/soc_camera/rcar_vin.c
+++ b/drivers/media/platform/soc_camera/rcar_vin.c
@@ -1888,6 +1888,7 @@ MODULE_DEVICE_TABLE(of, rcar_vin_of_table);
static struct platform_device_id rcar_vin_id_table[] = {
{ "r8a7794-vin", RCAR_GEN2 },
+ { "r8a7793-vin", RCAR_GEN2 },
{ "r8a7791-vin", RCAR_GEN2 },
{ "r8a7790-vin", RCAR_GEN2 },
{ "r8a7779-vin", RCAR_H1 },
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 0/2] media: soc_camera: rcar_vin: Add r8a7794, r8a7793 device support
2014-10-14 7:20 [PATCH 0/2] media: soc_camera: rcar_vin: Add r8a7794, r8a7793 device support Yoshihiro Kaneko
2014-10-14 7:20 ` [PATCH 1/2] media: soc_camera: rcar_vin: Add r8a7794 " Yoshihiro Kaneko
2014-10-14 7:20 ` [PATCH 2/2] media: soc_camera: rcar_vin: Add r8a7793 " Yoshihiro Kaneko
@ 2014-10-16 5:19 ` Simon Horman
2014-10-16 20:27 ` Guennadi Liakhovetski
3 siblings, 0 replies; 7+ messages in thread
From: Simon Horman @ 2014-10-16 5:19 UTC (permalink / raw)
To: Yoshihiro Kaneko
Cc: linux-media, Guennadi Liakhovetski, Magnus Damm, linux-sh,
Mauro Carvalho Chehab
[CC Mauro Carvalho Chehab]
On Tue, Oct 14, 2014 at 04:20:22PM +0900, Yoshihiro Kaneko wrote:
> This series is against master branch of linuxtv.org/media_tree.git.
>
> Koji Matsuoka (2):
> media: soc_camera: rcar_vin: Add r8a7794 device support
> media: soc_camera: rcar_vin: Add r8a7793 device support
>
> drivers/media/platform/soc_camera/rcar_vin.c | 2 ++
> 1 file changed, 2 insertions(+)
Acked-by: Simon Horman <horms+renesas@verge.net.au>
If the series needs reposting to a different CC list -
e.g. including Mauro - please let Kaneko-san or myself know.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 0/2] media: soc_camera: rcar_vin: Add r8a7794, r8a7793 device support
2014-10-14 7:20 [PATCH 0/2] media: soc_camera: rcar_vin: Add r8a7794, r8a7793 device support Yoshihiro Kaneko
` (2 preceding siblings ...)
2014-10-16 5:19 ` [PATCH 0/2] media: soc_camera: rcar_vin: Add r8a7794, " Simon Horman
@ 2014-10-16 20:27 ` Guennadi Liakhovetski
2014-10-17 6:02 ` Simon Horman
3 siblings, 1 reply; 7+ messages in thread
From: Guennadi Liakhovetski @ 2014-10-16 20:27 UTC (permalink / raw)
To: Yoshihiro Kaneko; +Cc: linux-media, Simon Horman, Magnus Damm, linux-sh
Hello,
Thanks for the patches. Could you please fold these two into one - they
really don't deserve to be separated. As for your other series - patches
there look mostly good - from just a formal review. If you don't mind,
I'll adjust a couple of cosmetic issues like missing curly braces in
if (a)
x();
else {
y();
z();
}
or multiline comments or similar minor things.
Thanks
Guennadi
On Tue, 14 Oct 2014, Yoshihiro Kaneko wrote:
> This series is against master branch of linuxtv.org/media_tree.git.
>
> Koji Matsuoka (2):
> media: soc_camera: rcar_vin: Add r8a7794 device support
> media: soc_camera: rcar_vin: Add r8a7793 device support
>
> drivers/media/platform/soc_camera/rcar_vin.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> --
> 1.9.1
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 0/2] media: soc_camera: rcar_vin: Add r8a7794, r8a7793 device support
2014-10-16 20:27 ` Guennadi Liakhovetski
@ 2014-10-17 6:02 ` Simon Horman
2014-10-17 6:44 ` Yoshihiro Kaneko
0 siblings, 1 reply; 7+ messages in thread
From: Simon Horman @ 2014-10-17 6:02 UTC (permalink / raw)
To: Guennadi Liakhovetski
Cc: Yoshihiro Kaneko, linux-media, Magnus Damm, linux-sh
Hi Guennadi,
On Thu, Oct 16, 2014 at 10:27:13PM +0200, Guennadi Liakhovetski wrote:
> Hello,
>
> Thanks for the patches. Could you please fold these two into one - they
> really don't deserve to be separated.
Thanks. Kaneko-san could you squash these patches and repost?
> As for your other series - patches
> there look mostly good - from just a formal review. If you don't mind,
> I'll adjust a couple of cosmetic issues like missing curly braces in
>
> if (a)
> x();
> else {
> y();
> z();
> }
>
> or multiline comments or similar minor things.
Feel free to make any minor updates.
> Thanks
> Guennadi
>
> On Tue, 14 Oct 2014, Yoshihiro Kaneko wrote:
>
> > This series is against master branch of linuxtv.org/media_tree.git.
> >
> > Koji Matsuoka (2):
> > media: soc_camera: rcar_vin: Add r8a7794 device support
> > media: soc_camera: rcar_vin: Add r8a7793 device support
> >
> > drivers/media/platform/soc_camera/rcar_vin.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > --
> > 1.9.1
> >
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 0/2] media: soc_camera: rcar_vin: Add r8a7794, r8a7793 device support
2014-10-17 6:02 ` Simon Horman
@ 2014-10-17 6:44 ` Yoshihiro Kaneko
0 siblings, 0 replies; 7+ messages in thread
From: Yoshihiro Kaneko @ 2014-10-17 6:44 UTC (permalink / raw)
To: Simon Horman
Cc: Guennadi Liakhovetski, Linux Media Mailing List, Magnus Damm,
Linux-sh list
2014-10-17 15:02 GMT+09:00 Simon Horman <horms@verge.net.au>:
> Hi Guennadi,
>
> On Thu, Oct 16, 2014 at 10:27:13PM +0200, Guennadi Liakhovetski wrote:
>> Hello,
>>
>> Thanks for the patches. Could you please fold these two into one - they
>> really don't deserve to be separated.
>
> Thanks. Kaneko-san could you squash these patches and repost?
Sure, will do.
>
>> As for your other series - patches
>> there look mostly good - from just a formal review. If you don't mind,
>> I'll adjust a couple of cosmetic issues like missing curly braces in
>>
>> if (a)
>> x();
>> else {
>> y();
>> z();
>> }
>>
>> or multiline comments or similar minor things.
>
> Feel free to make any minor updates.
>
>> Thanks
>> Guennadi
>>
>> On Tue, 14 Oct 2014, Yoshihiro Kaneko wrote:
>>
>> > This series is against master branch of linuxtv.org/media_tree.git.
>> >
>> > Koji Matsuoka (2):
>> > media: soc_camera: rcar_vin: Add r8a7794 device support
>> > media: soc_camera: rcar_vin: Add r8a7793 device support
>> >
>> > drivers/media/platform/soc_camera/rcar_vin.c | 2 ++
>> > 1 file changed, 2 insertions(+)
>> >
>> > --
>> > 1.9.1
>> >
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>
^ permalink raw reply [flat|nested] 7+ messages in thread