diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2019-01-04 20:37:33 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2019-01-11 15:23:18 +0300 |
commit | 16f4372fd7a5a560abe0edb4c68be1200599dc8a (patch) | |
tree | c15fec2f674a411ec9779eeb854ab981202f7b25 /drivers/pinctrl/sirf | |
parent | 6e737a4e921ea99125955d0d8821d8da129b03bd (diff) | |
download | linux-16f4372fd7a5a560abe0edb4c68be1200599dc8a.tar.xz |
pinctrl: mcp23s08: use struct_size() in devm_kzalloc()
One of the more common cases of allocation size calculations is finding
the size of a structure that has a zero-sized array at the end, along
with memory for some number of elements for that array. For example:
struct foo {
int stuff;
void *entry[];
};
instance = devm_kzalloc(dev, sizeof(struct foo) + sizeof(void *) * count, GFP_KERNEL);
Instead of leaving these open-coded and prone to type mistakes, we can
now use the new struct_size() helper:
instance = devm_kzalloc(dev, struct_size(instance, entry, count), GFP_KERNEL);
This code was detected with the help of Coccinelle.
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/sirf')
0 files changed, 0 insertions, 0 deletions