mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
nvmem: brcm_nvram: Use kzalloc for allocating only one element
Use kzalloc(...) rather than kcalloc(1, ...) because the number of elements we are specifying in this case is 1, so kzalloc would accomplish the same thing and we can simplify. Signed-off-by: Kenneth Lee <klee33@uw.edu> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Link: https://lore.kernel.org/r/20220916122100.170016-6-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ff1df1886f
commit
d3524bb5b9
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ static int brcm_nvram_parse(struct brcm_nvram *priv)
|
|||
|
||||
len = le32_to_cpu(header.len);
|
||||
|
||||
data = kcalloc(1, len, GFP_KERNEL);
|
||||
data = kzalloc(len, GFP_KERNEL);
|
||||
memcpy_fromio(data, priv->base, len);
|
||||
data[len - 1] = '\0';
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue