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

2017-02-01 Thread Laurent Pinchart
Hi Niklas, Thank you for the patch. By the way, you can use git format-patch -v2 to automatically add "v2" to the subject line. On Tuesday 31 Jan 2017 13:08:31 Niklas Söderlund wrote: > All lanes in data-lanes and clock-lanes properties should be unique. Add > a check for this in v4l2_of_parse

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

2017-01-31 Thread Sakari Ailus
On Tue, Jan 31, 2017 at 01:08:31PM +0100, Niklas Söderlund wrote: > All lanes in data-lanes and clock-lanes properties should be unique. Add > a check for this in v4l2_of_parse_csi_bus() and print a warning if > duplicated lanes are found. > > Signed-off-by: Niklas Söderlund Acked-by: Sakari Ail

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

2017-01-31 Thread Niklas Söderlund
All lanes in data-lanes and clock-lanes properties should be unique. Add a check for this in v4l2_of_parse_csi_bus() and print a warning if duplicated lanes are found. Signed-off-by: Niklas Söderlund --- Changes since v1: - Do not return -EINVAL if a duplicate is found. Sakari pointed out th