|
@@ -228,13 +228,12 @@ int pinconf_generic_parse_dt_config(struct device_node *np,
|
|
|
* Now limit the number of configs to the real number of
|
|
|
* found properties.
|
|
|
*/
|
|
|
- *configs = kzalloc(ncfg * sizeof(unsigned long), GFP_KERNEL);
|
|
|
+ *configs = kmemdup(cfg, ncfg * sizeof(unsigned long), GFP_KERNEL);
|
|
|
if (!*configs) {
|
|
|
ret = -ENOMEM;
|
|
|
goto out;
|
|
|
}
|
|
|
|
|
|
- memcpy(*configs, cfg, ncfg * sizeof(unsigned long));
|
|
|
*nconfigs = ncfg;
|
|
|
|
|
|
out:
|