summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-04-04 12:56:33 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-05-31 09:23:48 +0200
commitf79343dec48d3b95f8cd89750060ff94d0b701c6 (patch)
tree5d25938cb2064e6f2b1d2a3131d66e3adb0ba5e3
parentbd43d2fddc883d542b7133fa9e83497fdef03b51 (diff)
downloadbarebox-f79343dec48d3b95f8cd89750060ff94d0b701c6.tar.gz
barebox-f79343dec48d3b95f8cd89750060ff94d0b701c6.tar.xz
block: remove unused read_start and read_done ops
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--include/block.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/block.h b/include/block.h
index cfa4cb9ef1..ef36f585f1 100644
--- a/include/block.h
+++ b/include/block.h
@@ -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;