aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/attribute_container.c
diff options
context:
space:
mode:
authorJames Bottomley <James.Bottomley@steeleye.com>2005-08-15 16:13:19 -0500
committerJames Bottomley <jejb@mulgrave.(none)>2005-08-28 11:14:06 -0500
commitebd8bb7647e908e8654e565fa289b0300f9f8fa7 (patch)
treea2afebb1cdcb6309e2d1bc5e8c39e7895ade9236 /drivers/base/attribute_container.c
parent[SCSI] aiclib remove dead (diff)
downloadlinux-dev-ebd8bb7647e908e8654e565fa289b0300f9f8fa7.tar.xz
linux-dev-ebd8bb7647e908e8654e565fa289b0300f9f8fa7.zip
[SCSI] fix transport class corner case after rework
If your transport class sets the ATTRIBUTE_CONTAINER_NO_CLASSDEVS flag, then its configure method never gets called. This patch fixes that so that the configure method is called with a NULL classdev. Also remove a spurious inverted comma in the transport_class comments. Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/base/attribute_container.c')
-rw-r--r--drivers/base/attribute_container.c5
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,
if (!cont->match(cont, dev))
continue;
+ if (attribute_container_no_classdevs(cont)) {
+ fn(cont, dev, NULL);
+ continue;
+ }
+
spin_lock(&cont->containers_lock);
list_for_each_entry_safe(ic, tmp, &cont->containers, node) {
if (dev == ic->classdev.dev)