[PATCH 5/5] iio: remove left-over parent assignments

2020-05-22 Thread Alexandru Ardelean
These were found by doing some shell magic: for file in $(git grep -w devm_iio_device_alloc | cut -d: -f1 | sort | uniq) ; do if grep 'parent =' $file | grep -v trig | grep -vq devm_; then echo "$file -> $(grep "parent =" $file)" fi done --- Th

Re: [PATCH 5/5] iio: remove left-over parent assignments

2020-05-22 Thread Andy Shevchenko
On Fri, May 22, 2020 at 11:37 AM Alexandru Ardelean wrote: > > These were found by doing some shell magic: > > for file in $(git grep -w devm_iio_device_alloc | cut -d: -f1 | sort | uniq) > ; do > if grep 'parent =' $file | grep -v trig | grep -vq devm_; then >