diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2019-04-17 13:44:40 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-04-19 15:03:07 +0200 |
commit | 827c085baede48155c57dff16396620c5377e755 (patch) | |
tree | 945cc396ea3a8508ad354cbef493e5ddda3933bc /README | |
parent | 24c9f9b66a706013279b9214e00090ed4c2295e3 (diff) | |
download | linux-827c085baede48155c57dff16396620c5377e755.tar.bz2 |
staging: greybus: power_supply: use struct_size() helper
Make use of the struct_size() helper instead of an open-coded version
in order to avoid any potential type mistakes, in particular in the
context in which this code is being used.
So, replace code of the following form:
sizeof(*resp) + props_count * sizeof(struct gb_power_supply_props_desc)
with:
struct_size(resp, props, props_count)
This code was detected with the help of Coccinelle.
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Reviewed-by: Rui Miguel Silva <rmfrfs@gmail.com>
Reviewed-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'README')
0 files changed, 0 insertions, 0 deletions