diff options
author | Kyungmin Park <kmpark@infradead.org> | 2009-07-21 11:58:04 +0900 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2009-08-26 15:37:02 -0500 |
commit | ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29 (patch) | |
tree | e2b4610e0ceb0d3fe0209865e43d9130d89dbaa7 /include/linux | |
parent | 403ce1f759b5acec8514cd7e10ce76704fed519c (diff) |
OneNAND: Remove unused read_spareram
Remove unused read_spareram and add unlock_all as kernel does
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mtd/onenand.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/mtd/onenand.h b/include/linux/mtd/onenand.h index 2597e347b4b..06f7bafeae1 100644 --- a/include/linux/mtd/onenand.h +++ b/include/linux/mtd/onenand.h @@ -83,10 +83,9 @@ struct onenand_chip { size_t len); int (*wait) (struct mtd_info *mtd, int state); int (*bbt_wait) (struct mtd_info *mtd, int state); + void (*unlock_all)(struct mtd_info *mtd); int (*read_bufferram) (struct mtd_info *mtd, loff_t addr, int area, unsigned char *buffer, int offset, size_t count); - int (*read_spareram) (struct mtd_info *mtd, loff_t addr, int area, - unsigned char *buffer, int offset, size_t count); int (*write_bufferram) (struct mtd_info *mtd, loff_t addr, int area, const unsigned char *buffer, int offset, size_t count); |