[PATCH] 2.5.34 s390 fixes (6/10): xpram driver.

Martin Schwidefsky (schwidefsky@de.ibm.com)
Wed, 11 Sep 2002 18:08:49 +0200


Hi Linus,
a fix for the xpram driver, remove the reference to xpram_release.

blue skies,
Martin.

diff -urN linux-2.5.34/drivers/s390/block/xpram.c linux-2.5.34-s390/drivers/s390/block/xpram.c
--- linux-2.5.34/drivers/s390/block/xpram.c Mon Sep 9 19:35:14 2002
+++ linux-2.5.34-s390/drivers/s390/block/xpram.c Tue Aug 27 17:44:53 2002
@@ -15,7 +15,6 @@
* Device specific file operations
* xpram_iotcl
* xpram_open
- * xpram_release
*
* "ad-hoc" partitioning:
* the expanded memory can be partitioned among several devices
@@ -36,6 +35,7 @@
#include <linux/blkpg.h>
#include <linux/hdreg.h> /* HDIO_GETGEO */
#include <linux/device.h>
+#include <linux/bio.h>
#include <asm/uaccess.h>

#define XPRAM_NAME "xpram"
@@ -328,7 +328,6 @@
return 0;
}

-
static int xpram_ioctl (struct inode *inode, struct file *filp,
unsigned int cmd, unsigned long arg)
{
@@ -354,14 +353,12 @@
put_user(4, &geo->start);
return 0;
}
-}

static struct block_device_operations xpram_devops =
{
owner: THIS_MODULE,
ioctl: xpram_ioctl,
open: xpram_open,
- release: xpram_release,
};

/*

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/