Re: [RFC PATCH 01/57] drivers: s390/cio: Use driver_for_each_device

2019-06-17 Thread Sebastian Ott
On Mon, 3 Jun 2019, Suzuki K Poulose wrote: > The cio driver use driver_find_device() to find all devices > to release them before the driver is unregistered. Instead, > it could easily use a lighter driver_for_each_device() helper > to iterate over all the devices. > > Cc: Sebastian Ott > Cc: Pe

Re: [RFC PATCH 01/57] drivers: s390/cio: Use driver_for_each_device

2019-06-14 Thread Suzuki K Poulose
Heiko, Sebastian, Peter, Please could you review the following patch ? On 03/06/2019 16:49, Suzuki K Poulose wrote: The cio driver use driver_find_device() to find all devices to release them before the driver is unregistered. Instead, it could easily use a lighter driver_for_each_device() hel

[RFC PATCH 01/57] drivers: s390/cio: Use driver_for_each_device

2019-06-03 Thread Suzuki K Poulose
The cio driver use driver_find_device() to find all devices to release them before the driver is unregistered. Instead, it could easily use a lighter driver_for_each_device() helper to iterate over all the devices. Cc: Sebastian Ott Cc: Peter Oberparleiter Cc: Heiko Carstens Signed-off-by: Suzu