]> git.baikalelectronics.ru Git - kernel.git/commit
nvmem: brcm_nvram: Use kzalloc for allocating only one element
authorKenneth Lee <klee33@uw.edu>
Fri, 16 Sep 2022 12:20:52 +0000 (13:20 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 24 Sep 2022 12:54:38 +0000 (14:54 +0200)
commit13b66bad62d03069fa3432e3b98fb5343c072398
tree7c797970f1656e2b14e1bd638f60e0fb630a94a7
parenta8e4a63aceb7ec0cf267750874de3997d3f00e47
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>
drivers/nvmem/brcm_nvram.c