diff options
-rw-r--r-- | drivers/base/component.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/base/component.c b/drivers/base/component.c index b4236daed4fa..f748430bb654 100644 --- a/drivers/base/component.c +++ b/drivers/base/component.c | |||
@@ -293,10 +293,12 @@ int component_master_add_with_match(struct device *dev, | |||
293 | if (ops->add_components && match) | 293 | if (ops->add_components && match) |
294 | return -EINVAL; | 294 | return -EINVAL; |
295 | 295 | ||
296 | /* Reallocate the match array for its true size */ | 296 | if (match) { |
297 | match = component_match_realloc(dev, match, match->num); | 297 | /* Reallocate the match array for its true size */ |
298 | if (IS_ERR(match)) | 298 | match = component_match_realloc(dev, match, match->num); |
299 | return PTR_ERR(match); | 299 | if (IS_ERR(match)) |
300 | return PTR_ERR(match); | ||
301 | } | ||
300 | 302 | ||
301 | master = kzalloc(sizeof(*master), GFP_KERNEL); | 303 | master = kzalloc(sizeof(*master), GFP_KERNEL); |
302 | if (!master) | 304 | if (!master) |