|
@@ -250,7 +250,8 @@ static int floppy_ioctl(struct block_device *bdev, fmode_t mode,
|
|
|
unsigned int cmd, unsigned long param);
|
|
|
static int floppy_open(struct block_device *bdev, fmode_t mode);
|
|
|
static int floppy_release(struct gendisk *disk, fmode_t mode);
|
|
|
-static int floppy_check_change(struct gendisk *disk);
|
|
|
+static unsigned int floppy_check_events(struct gendisk *disk,
|
|
|
+ unsigned int clearing);
|
|
|
static int floppy_revalidate(struct gendisk *disk);
|
|
|
|
|
|
static bool swim3_end_request(int err, unsigned int nr_bytes)
|
|
@@ -975,10 +976,11 @@ static int floppy_release(struct gendisk *disk, fmode_t mode)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int floppy_check_change(struct gendisk *disk)
|
|
|
+static unsigned int floppy_check_events(struct gendisk *disk,
|
|
|
+ unsigned int clearing)
|
|
|
{
|
|
|
struct floppy_state *fs = disk->private_data;
|
|
|
- return fs->ejected;
|
|
|
+ return fs->ejected ? DISK_EVENT_MEDIA_CHANGE : 0;
|
|
|
}
|
|
|
|
|
|
static int floppy_revalidate(struct gendisk *disk)
|
|
@@ -1025,7 +1027,7 @@ static const struct block_device_operations floppy_fops = {
|
|
|
.open = floppy_unlocked_open,
|
|
|
.release = floppy_release,
|
|
|
.ioctl = floppy_ioctl,
|
|
|
- .media_changed = floppy_check_change,
|
|
|
+ .check_events = floppy_check_events,
|
|
|
.revalidate_disk= floppy_revalidate,
|
|
|
};
|
|
|
|
|
@@ -1161,6 +1163,7 @@ static int __devinit swim3_attach(struct macio_dev *mdev, const struct of_device
|
|
|
disk->major = FLOPPY_MAJOR;
|
|
|
disk->first_minor = i;
|
|
|
disk->fops = &floppy_fops;
|
|
|
+ disk->events = DISK_EVENT_MEDIA_CHANGE;
|
|
|
disk->private_data = &floppy_states[i];
|
|
|
disk->queue = swim3_queue;
|
|
|
disk->flags |= GENHD_FL_REMOVABLE;
|