diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-13 11:53:56 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-13 11:53:56 -0500 |
| commit | 90ac8f7741be4ff66de1f52904f4f67f272f74ce (patch) | |
| tree | d20316f5eb9fe399edd81c14d801602aac64a752 /drivers/scsi/libata-scsi.c | |
| parent | 98684a9d91bceff829b6dc7adf0f662d59cfa6e3 (diff) | |
| parent | 50630195bbdfe1ca775d94cd68a5f18bc1b717e4 (diff) | |
Merge branch 'upstream-fixes' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev
Diffstat (limited to 'drivers/scsi/libata-scsi.c')
| -rw-r--r-- | drivers/scsi/libata-scsi.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c index 379e87089764..72ddba98f8fb 100644 --- a/drivers/scsi/libata-scsi.c +++ b/drivers/scsi/libata-scsi.c | |||
| @@ -2173,9 +2173,12 @@ ata_scsi_find_dev(struct ata_port *ap, const struct scsi_device *scsidev) | |||
| 2173 | if (unlikely(!ata_dev_present(dev))) | 2173 | if (unlikely(!ata_dev_present(dev))) |
| 2174 | return NULL; | 2174 | return NULL; |
| 2175 | 2175 | ||
| 2176 | if (!atapi_enabled) { | 2176 | if (!atapi_enabled || (ap->flags & ATA_FLAG_NO_ATAPI)) { |
| 2177 | if (unlikely(dev->class == ATA_DEV_ATAPI)) | 2177 | if (unlikely(dev->class == ATA_DEV_ATAPI)) { |
| 2178 | printk(KERN_WARNING "ata%u(%u): WARNING: ATAPI is %s, device ignored.\n", | ||
| 2179 | ap->id, dev->devno, atapi_enabled ? "not supported with this driver" : "disabled"); | ||
| 2178 | return NULL; | 2180 | return NULL; |
| 2181 | } | ||
| 2179 | } | 2182 | } |
| 2180 | 2183 | ||
| 2181 | return dev; | 2184 | return dev; |
