Skip to content

Commit

Permalink
[PATCH] switch pd
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Oct 21, 2008
1 parent c9acf90 commit b6a8953
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions drivers/block/paride/pd.c
Original file line number Diff line number Diff line change
Expand Up @@ -728,9 +728,9 @@ static int pd_special_command(struct pd_unit *disk,

/* kernel glue structures */

static int pd_open(struct inode *inode, struct file *file)
static int pd_open(struct block_device *bdev, fmode_t mode)
{
struct pd_unit *disk = inode->i_bdev->bd_disk->private_data;
struct pd_unit *disk = bdev->bd_disk->private_data;

disk->access++;

Expand Down Expand Up @@ -758,10 +758,10 @@ static int pd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
return 0;
}

static int pd_ioctl(struct inode *inode, struct file *file,
static int pd_ioctl(struct block_device *bdev, fmode_t mode,
unsigned int cmd, unsigned long arg)
{
struct pd_unit *disk = inode->i_bdev->bd_disk->private_data;
struct pd_unit *disk = bdev->bd_disk->private_data;

switch (cmd) {
case CDROMEJECT:
Expand All @@ -773,9 +773,9 @@ static int pd_ioctl(struct inode *inode, struct file *file,
}
}

static int pd_release(struct inode *inode, struct file *file)
static int pd_release(struct gendisk *p, fmode_t mode)
{
struct pd_unit *disk = inode->i_bdev->bd_disk->private_data;
struct pd_unit *disk = p->private_data;

if (!--disk->access && disk->removable)
pd_special_command(disk, pd_door_unlock);
Expand Down Expand Up @@ -807,9 +807,9 @@ static int pd_revalidate(struct gendisk *p)

static struct block_device_operations pd_fops = {
.owner = THIS_MODULE,
.__open = pd_open,
.__release = pd_release,
.__ioctl = pd_ioctl,
.open = pd_open,
.release = pd_release,
.locked_ioctl = pd_ioctl,
.getgeo = pd_getgeo,
.media_changed = pd_check_media,
.revalidate_disk= pd_revalidate
Expand Down

0 comments on commit b6a8953

Please sign in to comment.