diff options
author | Lin Ming <ming.m.lin@intel.com> | 2012-06-25 04:13:08 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-06-29 11:38:17 -0400 |
commit | b1354cbb5bfce28f2e1ed28d77b362dfdfca638d (patch) | |
tree | 0784fe570bc70663207f56a214f0ff529962bdc6 /drivers/ata | |
parent | a606dac368eed5696fb38e16b1394f1d049c09e9 (diff) |
libata: detect Device Attention support
Add a new flag ATA_DFLAG_DA to indicate that device supports "Device
Attention".
Acked-by: Aaron Lu <aaron.lu@amd.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/libata-core.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index 7705191b5a81..c14f88c1f1da 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
@@ -2374,6 +2374,9 @@ int ata_dev_configure(struct ata_device *dev) | |||
2374 | dma_dir_string = ", DMADIR"; | 2374 | dma_dir_string = ", DMADIR"; |
2375 | } | 2375 | } |
2376 | 2376 | ||
2377 | if (ata_id_has_da(dev->id)) | ||
2378 | dev->flags |= ATA_DFLAG_DA; | ||
2379 | |||
2377 | /* print device info to dmesg */ | 2380 | /* print device info to dmesg */ |
2378 | if (ata_msg_drv(ap) && print_info) | 2381 | if (ata_msg_drv(ap) && print_info) |
2379 | ata_dev_info(dev, | 2382 | ata_dev_info(dev, |