|
|
@@ -63,8 +63,7 @@ static int raid_match(struct attribute_container *cont, struct device *dev)
|
|
|
* emulated RAID devices, so start with SCSI */
|
|
|
struct raid_internal *i = ac_to_raid_internal(cont);
|
|
|
|
|
|
-#if defined(CONFIG_SCSI) || defined(CONFIG_SCSI_MODULE)
|
|
|
- if (scsi_is_sdev_device(dev)) {
|
|
|
+ if (IS_ENABLED(CONFIG_SCSI) && scsi_is_sdev_device(dev)) {
|
|
|
struct scsi_device *sdev = to_scsi_device(dev);
|
|
|
|
|
|
if (i->f->cookie != sdev->host->hostt)
|
|
|
@@ -72,7 +71,6 @@ static int raid_match(struct attribute_container *cont, struct device *dev)
|
|
|
|
|
|
return i->f->is_raid(dev);
|
|
|
}
|
|
|
-#endif
|
|
|
/* FIXME: look at other subsystems too */
|
|
|
return 0;
|
|
|
}
|