Re: [PATCH] v4l: of: check for unique lanes in data-lanes and clock-lanes

2017-01-28 Thread Laurent Pinchart
Hi Niklas, Thank you for the patch. On Thursday 26 Jan 2017 14:12:59 Niklas Söderlund wrote: > All lines in data-lanes and clock-lanes properties must be unique. > Instead of drivers checking for this add it to the generic parser. > > Signed-off-by: Niklas Söderlund > --- > drivers/media/v4l2-

Re: [PATCH] v4l: of: check for unique lanes in data-lanes and clock-lanes

2017-01-27 Thread Sakari Ailus
Hi Niklas, On Thu, Jan 26, 2017 at 02:12:59PM +0100, Niklas Söderlund wrote: > All lines in data-lanes and clock-lanes properties must be unique. > Instead of drivers checking for this add it to the generic parser. > > Signed-off-by: Niklas Söderlund > --- > drivers/media/v4l2-core/v4l2-of.c |

Re: [PATCH] v4l: of: check for unique lanes in data-lanes and clock-lanes

2017-01-26 Thread Geert Uytterhoeven
Hi Niklas, On Thu, Jan 26, 2017 at 2:12 PM, Niklas Söderlund wrote: > diff --git a/drivers/media/v4l2-core/v4l2-of.c > b/drivers/media/v4l2-core/v4l2-of.c > index 93b33681776c..1042db6bb996 100644 > --- a/drivers/media/v4l2-core/v4l2-of.c > +++ b/drivers/media/v4l2-core/v4l2-of.c > @@ -32,12 +32

[PATCH] v4l: of: check for unique lanes in data-lanes and clock-lanes

2017-01-26 Thread Niklas Söderlund
All lines in data-lanes and clock-lanes properties must be unique. Instead of drivers checking for this add it to the generic parser. Signed-off-by: Niklas Söderlund --- drivers/media/v4l2-core/v4l2-of.c | 18 +- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/drive