|
@@ -61,8 +61,8 @@ static int regcache_hw_init(struct regmap *map)
|
|
|
if (!regmap_volatile(map, i * map->reg_stride))
|
|
|
count++;
|
|
|
|
|
|
- map->reg_defaults = kmalloc(count * sizeof(struct reg_default),
|
|
|
- GFP_KERNEL);
|
|
|
+ map->reg_defaults = kmalloc_array(count, sizeof(struct reg_default),
|
|
|
+ GFP_KERNEL);
|
|
|
if (!map->reg_defaults) {
|
|
|
ret = -ENOMEM;
|
|
|
goto err_free;
|