Re: [PATCH v3 2/2] bus: ti-sysc: sysc_check_children(): Change return type to void

2019-08-13 Thread Tony Lindgren
* Roger Quadros [190813 11:14]: > > On 13/08/2019 10:55, Nishka Dasgupta wrote: > > Change return type of function sysc_check_children() from int to void as > > it always returns 0. Remove its return statement as well. > > At call site, remove the variable that was used to store the return > >

Re: [PATCH v3 2/2] bus: ti-sysc: sysc_check_children(): Change return type to void

2019-08-13 Thread Roger Quadros
On 13/08/2019 10:55, Nishka Dasgupta wrote: > Change return type of function sysc_check_children() from int to void as > it always returns 0. Remove its return statement as well. > At call site, remove the variable that was used to store the return > value, as well as the check on the return

[PATCH v3 2/2] bus: ti-sysc: sysc_check_children(): Change return type to void

2019-08-13 Thread Nishka Dasgupta
Change return type of function sysc_check_children() from int to void as it always returns 0. Remove its return statement as well. At call site, remove the variable that was used to store the return value, as well as the check on the return value. Signed-off-by: Nishka Dasgupta --- - This is a