On Wed, 2007-09-26 at 19:54 +0200, Kay Sievers wrote: > Hi James, > seems we miss the following fix in the current tree. > > Thanks, > Kay > > > From: Kay Sievers <kay.sievers@xxxxxxxx> > Subject: [SCSI] fix scsi_is_sdev_device() after switch to default sdev attributes > > Signed-off-by: Kay Sievers <kay.sievers@xxxxxxxx> > --- > 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; This will make the check different from all the others in the mid-layer ... is there any reason to change it? James - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html