Re: [PATCH v2] pinctrl: tb10x: Use flexible-array member and struct_size() helper

2019-06-07 Thread Linus Walleij
On Fri, Jun 7, 2019 at 1:11 AM Gustavo A. R. Silva wrote: > Update the code to use a flexible array member instead of a pointer in > structure tb10x_pinctrl and use the struct_size() helper: > > struct tb10x_pinctrl { > ... > struct tb10x_of_pinfunc pinfuncs[]; > }; > > Also,

[PATCH v2] pinctrl: tb10x: Use flexible-array member and struct_size() helper

2019-06-06 Thread Gustavo A. R. Silva
Update the code to use a flexible array member instead of a pointer in structure tb10x_pinctrl and use the struct_size() helper: struct tb10x_pinctrl { ... struct tb10x_of_pinfunc pinfuncs[]; }; Also, make use of the struct_size() helper instead of an open-coded version in order