diff options
Diffstat (limited to 'drivers/base/attribute_container.c')
-rw-r--r-- | drivers/base/attribute_container.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/base/attribute_container.c b/drivers/base/attribute_container.c index 62c093db11e6..ebcae5c34133 100644 --- a/drivers/base/attribute_container.c +++ b/drivers/base/attribute_container.c | |||
@@ -237,6 +237,11 @@ attribute_container_device_trigger(struct device *dev, | |||
237 | if (!cont->match(cont, dev)) | 237 | if (!cont->match(cont, dev)) |
238 | continue; | 238 | continue; |
239 | 239 | ||
240 | if (attribute_container_no_classdevs(cont)) { | ||
241 | fn(cont, dev, NULL); | ||
242 | continue; | ||
243 | } | ||
244 | |||
240 | spin_lock(&cont->containers_lock); | 245 | spin_lock(&cont->containers_lock); |
241 | list_for_each_entry_safe(ic, tmp, &cont->containers, node) { | 246 | list_for_each_entry_safe(ic, tmp, &cont->containers, node) { |
242 | if (dev == ic->classdev.dev) | 247 | if (dev == ic->classdev.dev) |