Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ab746cb9 authored by Al Viro's avatar Al Viro
Browse files

[PATCH] switch z2ram



Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent f3f68b36
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -137,8 +137,7 @@ get_chipram( void )
    return;
}

static int
z2_open( struct inode *inode, struct file *filp )
static int z2_open(struct block_device *bdev, fmode_t mode)
{
    int device;
    int max_z2_map = ( Z2RAM_SIZE / Z2RAM_CHUNKSIZE ) *
@@ -147,7 +146,7 @@ z2_open( struct inode *inode, struct file *filp )
	sizeof( z2ram_map[0] );
    int rc = -ENOMEM;

    device = iminor(inode);
    device = MINOR(bdev->bd_dev);

    if ( current_device != -1 && current_device != device )
    {
@@ -299,7 +298,7 @@ z2_open( struct inode *inode, struct file *filp )
}

static int
z2_release( struct inode *inode, struct file *filp )
z2_release(struct gendisk *disk, fmode_t mode)
{
    if ( current_device == -1 )
	return 0;     
@@ -314,8 +313,8 @@ z2_release( struct inode *inode, struct file *filp )
static struct block_device_operations z2_fops =
{
	.owner		= THIS_MODULE,
	.__open		= z2_open,
	.__release	= z2_release,
	.open		= z2_open,
	.release	= z2_release,
};

static struct kobject *z2_find(dev_t dev, int *part, void *data)