diff options
Diffstat (limited to 'drivers/ata/libata-scsi.c')
-rw-r--r-- | drivers/ata/libata-scsi.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index 7d66c986a54c..f0f586b56c20 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c | |||
@@ -3160,6 +3160,24 @@ static void ata_scsi_handle_link_detach(struct ata_link *link) | |||
3160 | } | 3160 | } |
3161 | 3161 | ||
3162 | /** | 3162 | /** |
3163 | * ata_scsi_media_change_notify - send media change event | ||
3164 | * @atadev: Pointer to the disk device with media change event | ||
3165 | * | ||
3166 | * Tell the block layer to send a media change notification | ||
3167 | * event. | ||
3168 | * | ||
3169 | * LOCKING: | ||
3170 | * interrupt context, may not sleep. | ||
3171 | */ | ||
3172 | void ata_scsi_media_change_notify(struct ata_device *atadev) | ||
3173 | { | ||
3174 | #ifdef OTHER_AN_PATCHES_HAVE_BEEN_APPLIED | ||
3175 | scsi_device_event_notify(atadev->sdev, SDEV_MEDIA_CHANGE); | ||
3176 | #endif | ||
3177 | } | ||
3178 | EXPORT_SYMBOL_GPL(ata_scsi_media_change_notify); | ||
3179 | |||
3180 | /** | ||
3163 | * ata_scsi_hotplug - SCSI part of hotplug | 3181 | * ata_scsi_hotplug - SCSI part of hotplug |
3164 | * @work: Pointer to ATA port to perform SCSI hotplug on | 3182 | * @work: Pointer to ATA port to perform SCSI hotplug on |
3165 | * | 3183 | * |