9
0
Fork 0

block: remove unused read_start and read_done ops

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-04-04 12:56:33 +02:00
parent bd43d2fddc
commit f79343dec4
1 changed files with 0 additions and 2 deletions

View File

@ -8,8 +8,6 @@ struct block_device;
struct block_device_ops {
int (*read)(struct block_device *, void *buf, int block, int num_blocks);
int (*write)(struct block_device *, const void *buf, int block, int num_blocks);
int (*read_start)(struct block_device *, void *buf, int block, int num_blocks);
int (*read_done)(struct block_device *);
};
struct chunk;