Commit 49bdf267 authored by Martin Schwidefsky's avatar Martin Schwidefsky Committed by Linus Torvalds

[PATCH] s390: xpram driver.

Remove unused variable and add missing return in xpram_setup_blkdev.
parent d258243d
...@@ -325,7 +325,6 @@ static int xpram_ioctl (struct inode *inode, struct file *filp, ...@@ -325,7 +325,6 @@ static int xpram_ioctl (struct inode *inode, struct file *filp,
{ {
struct hd_geometry *geo; struct hd_geometry *geo;
unsigned long size; unsigned long size;
int idx = minor(inode->i_rdev);
if (cmd != HDIO_GETGEO) if (cmd != HDIO_GETGEO)
return -EINVAL; return -EINVAL;
/* /*
...@@ -474,6 +473,7 @@ static int __init xpram_setup_blkdev(void) ...@@ -474,6 +473,7 @@ static int __init xpram_setup_blkdev(void)
out: out:
while (i--) while (i--)
put_disk(xpram_disks[i]); put_disk(xpram_disks[i]);
return rc;
} }
/* /*
......
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