Re: [RFC PATCH 39/57] drivers: mux: Use class_find_device_by_of_node helper

2019-06-03 Thread Peter Rosin
On 2019-06-03 18:45, Suzuki K Poulose wrote: > Hi Peter, > Sorry about that. The routine is a wrapper to class_find_device() > which uses a generic routine to match the of_node, instead of the > driver specific of_dev_node_match(). The series adds such wrappers for >

Re: [RFC PATCH 39/57] drivers: mux: Use class_find_device_by_of_node helper

2019-06-03 Thread Suzuki K Poulose
Hi Peter, Thanks for your comments, please see my response inline. On 03/06/2019 17:22, Peter Rosin wrote: Hi! This all sounds like nice changes. First a couple of nitpicks: From the cover letter, included here to spare most of the others... subsystems. This series is an attempt to

Re: [RFC PATCH 39/57] drivers: mux: Use class_find_device_by_of_node helper

2019-06-03 Thread Peter Rosin
Hi! This all sounds like nice changes. First a couple of nitpicks: From the cover letter, included here to spare most of the others... > subsystems. This series is an attempt to consolidate the and cleanup s/the and/and/ On 2019-06-03 17:50, Suzuki K Poulose wrote: > Use the generic helper to

[RFC PATCH 39/57] drivers: mux: Use class_find_device_by_of_node helper

2019-06-03 Thread Suzuki K Poulose
Use the generic helper to find a device matching the of_node. Cc: Peter Rosin Signed-off-by: Suzuki K Poulose --- drivers/mux/core.c | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/drivers/mux/core.c b/drivers/mux/core.c index d1271c1..3591e40 100644 ---