Commit 7ae24fce authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Jens Axboe

cdrom: remove the unused mode argument to cdrom_release

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarPhillip Potter <phil@philpotter.co.uk>
Reviewed-by: default avatarHannes Reinecke <hare@suse.de>
Acked-by: default avatarChristian Brauner <brauner@kernel.org>
Link: https://lore.kernel.org/r/20230608110258.189493-7-hch@lst.deSigned-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 8cdf433e
...@@ -1250,7 +1250,7 @@ static int check_for_audio_disc(struct cdrom_device_info *cdi, ...@@ -1250,7 +1250,7 @@ static int check_for_audio_disc(struct cdrom_device_info *cdi,
return 0; return 0;
} }
void cdrom_release(struct cdrom_device_info *cdi, fmode_t mode) void cdrom_release(struct cdrom_device_info *cdi)
{ {
const struct cdrom_device_ops *cdo = cdi->ops; const struct cdrom_device_ops *cdo = cdi->ops;
......
...@@ -481,7 +481,7 @@ static int gdrom_bdops_open(struct block_device *bdev, fmode_t mode) ...@@ -481,7 +481,7 @@ static int gdrom_bdops_open(struct block_device *bdev, fmode_t mode)
bdev_check_media_change(bdev); bdev_check_media_change(bdev);
mutex_lock(&gdrom_mutex); mutex_lock(&gdrom_mutex);
ret = cdrom_open(gd.cd_info, mode); ret = cdrom_open(gd.cd_info);
mutex_unlock(&gdrom_mutex); mutex_unlock(&gdrom_mutex);
return ret; return ret;
} }
......
...@@ -512,7 +512,7 @@ static void sr_block_release(struct gendisk *disk, fmode_t mode) ...@@ -512,7 +512,7 @@ static void sr_block_release(struct gendisk *disk, fmode_t mode)
struct scsi_cd *cd = scsi_cd(disk); struct scsi_cd *cd = scsi_cd(disk);
mutex_lock(&cd->lock); mutex_lock(&cd->lock);
cdrom_release(&cd->cdi, mode); cdrom_release(&cd->cdi);
mutex_unlock(&cd->lock); mutex_unlock(&cd->lock);
scsi_device_put(cd->device); scsi_device_put(cd->device);
......
...@@ -102,7 +102,7 @@ int cdrom_read_tocentry(struct cdrom_device_info *cdi, ...@@ -102,7 +102,7 @@ int cdrom_read_tocentry(struct cdrom_device_info *cdi,
/* the general block_device operations structure: */ /* the general block_device operations structure: */
int cdrom_open(struct cdrom_device_info *cdi, fmode_t mode); int cdrom_open(struct cdrom_device_info *cdi, fmode_t mode);
extern void cdrom_release(struct cdrom_device_info *cdi, fmode_t mode); void cdrom_release(struct cdrom_device_info *cdi);
int cdrom_ioctl(struct cdrom_device_info *cdi, struct block_device *bdev, int cdrom_ioctl(struct cdrom_device_info *cdi, struct block_device *bdev,
unsigned int cmd, unsigned long arg); unsigned int cmd, unsigned long arg);
extern unsigned int cdrom_check_events(struct cdrom_device_info *cdi, extern unsigned int cdrom_check_events(struct cdrom_device_info *cdi,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment