1234567891011121314151617181920212223242526272829 |
- From d3524bb5b9a0c567b853a0024526afe87dde01ed Mon Sep 17 00:00:00 2001
- From: Kenneth Lee <[email protected]>
- Date: Fri, 16 Sep 2022 13:20:52 +0100
- Subject: [PATCH] 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 <[email protected]>
- Signed-off-by: Srinivas Kandagatla <[email protected]>
- Link: https://lore.kernel.org/r/[email protected]
- Signed-off-by: Greg Kroah-Hartman <[email protected]>
- ---
- drivers/nvmem/brcm_nvram.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- --- a/drivers/nvmem/brcm_nvram.c
- +++ b/drivers/nvmem/brcm_nvram.c
- @@ -96,7 +96,7 @@ static int brcm_nvram_parse(struct brcm_
-
- 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';
-
|