public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix leftover from default sdev attribute switch
@ 2007-09-26 17:54 Kay Sievers
  2007-09-26 18:23 ` James Bottomley
  0 siblings, 1 reply; 5+ messages in thread
From: Kay Sievers @ 2007-09-26 17:54 UTC (permalink / raw)
  To: James Bottomley; +Cc: linux-scsi

Hi James,
seems we miss the following fix in the current tree.

Thanks,
Kay


From: Kay Sievers <kay.sievers@vrfy.org>
Subject: [SCSI] fix scsi_is_sdev_device() after switch to default sdev attributes

Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
---
diff --git a/drivers/scsi/scsi_sysfs.c b/drivers/scsi/scsi_sysfs.c
index 0088c4d..8e880ef 100644
--- a/drivers/scsi/scsi_sysfs.c
+++ b/drivers/scsi/scsi_sysfs.c
@@ -995,7 +995,7 @@ void scsi_sysfs_device_initialize(struct scsi_device *sdev)
 
 int scsi_is_sdev_device(const struct device *dev)
 {
-	return dev->release == scsi_device_dev_release;
+	return dev->type == &scsi_dev_type;
 }
 EXPORT_SYMBOL(scsi_is_sdev_device);
 


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-09-26 20:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-26 17:54 [PATCH] fix leftover from default sdev attribute switch Kay Sievers
2007-09-26 18:23 ` James Bottomley
2007-09-26 18:32   ` Kay Sievers
2007-09-26 20:08     ` James Bottomley
2007-09-26 20:19       ` Kay Sievers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox