summaryrefslogtreecommitdiffstats
path: root/drivers/extcon/extcon-arizona.c
diff options
context:
space:
mode:
authorMarkus Elfring2017-04-23 22:44:19 +0200
committerChanwoo Choi2017-05-23 11:32:03 +0200
commitcf5459a9e2f3033bf16773ef5fc32ad0243a513b (patch)
tree702b277e77572f3e5fc4a19de390568b29035a7c /drivers/extcon/extcon-arizona.c
parentextcon: Fix a typo in three comment lines (diff)
downloadkernel-qcow2-linux-cf5459a9e2f3033bf16773ef5fc32ad0243a513b.tar.gz
kernel-qcow2-linux-cf5459a9e2f3033bf16773ef5fc32ad0243a513b.tar.xz
kernel-qcow2-linux-cf5459a9e2f3033bf16773ef5fc32ad0243a513b.zip
extcon: arizona: Use devm_kcalloc() in arizona_extcon_get_micd_configs()
* A multiplication for the size determination of a memory allocation indicated that an array data structure should be processed. Thus use the corresponding function "devm_kcalloc". * Replace the specification of a data structure by a pointer dereference to make the corresponding size determination a bit safer according to the Linux coding style convention. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Reviewed-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon/extcon-arizona.c')
-rw-r--r--drivers/extcon/extcon-arizona.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c
index e2d78cd7030d..f84da4a17724 100644
--- a/drivers/extcon/extcon-arizona.c
+++ b/drivers/extcon/extcon-arizona.c
@@ -1271,9 +1271,7 @@ static int arizona_extcon_get_micd_configs(struct device *dev,
goto out;
nconfs /= entries_per_config;
-
- micd_configs = devm_kzalloc(dev,
- nconfs * sizeof(struct arizona_micd_range),
+ micd_configs = devm_kcalloc(dev, nconfs, sizeof(*micd_configs),
GFP_KERNEL);
if (!micd_configs) {
ret = -ENOMEM;