Fix blocks per chunk in resize
[yaffs/.git] / yaffs_mtdif.h
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system. 
3  * yaffs_mtdif.h  NAND mtd interface wrappers
4  *
5  * Copyright (C) 2002 Aleph One Ltd.
6  *   for Toby Churchill Ltd and Brightstar Engineering
7  *
8  * Created by Charles Manning <charles@aleph1.co.uk>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU Lesser General Public License version 2.1 as
12  * published by the Free Software Foundation.
13  *
14  *
15  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
16  *
17  * $Id: yaffs_mtdif.h,v 1.4 2002-09-27 20:50:50 charles Exp $
18  */
19
20 #ifndef __YAFFS_MTDIF_H__
21 #define __YAFFS_MTDIF_H__
22
23 #include "yaffs_guts.h"
24
25 int nandmtd_WriteChunkToNAND(yaffs_Device *dev,int chunkInNAND,const __u8 *data, yaffs_Spare *spare);
26 int nandmtd_ReadChunkFromNAND(yaffs_Device *dev,int chunkInNAND, __u8 *data, yaffs_Spare *spare);
27 int nandmtd_EraseBlockInNAND(yaffs_Device *dev, int blockNumber);
28 int nandmtd_InitialiseNAND(yaffs_Device *dev);
29 #endif
30
31
32
33