]> Pileus Git - ~andy/linux/commitdiff
regmap: Fix kcalloc parameters swapped
authorAxel Lin <axel.lin@gmail.com>
Fri, 10 Feb 2012 11:29:55 +0000 (19:29 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Fri, 10 Feb 2012 11:46:14 +0000 (11:46 +0000)
The first parameter should be "number of elements" and the second parameter
should be "element size".

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/base/regmap/regmap.c

index 28e89fd7c28d02399f97b97ad5e42fcd6b95004f..46b2bd742ee6cc5313619f6f2f510e1fa077ef64 100644 (file)
@@ -709,7 +709,7 @@ int regmap_register_patch(struct regmap *map, const struct reg_default *regs,
                }
        }
 
-       map->patch = kcalloc(sizeof(struct reg_default), num_regs, GFP_KERNEL);
+       map->patch = kcalloc(num_regs, sizeof(struct reg_default), GFP_KERNEL);
        if (map->patch != NULL) {
                memcpy(map->patch, regs,
                       num_regs * sizeof(struct reg_default));