removed - more testing
[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 General Public License version 2 as
12  * published by the Free Software Foundation.
13  *
14  */
15
16 #ifndef __YAFFS_MTDIF_H__
17 #define __YAFFS_MTDIF_H__
18
19 #include "yaffs_guts.h"
20
21 int nandmtd_WriteChunkToNAND(yaffs_Device *dev,int chunkInNAND,const __u8 *data, yaffs_Spare *spare);
22 int nandmtd_ReadChunkFromNAND(yaffs_Device *dev,int chunkInNAND, __u8 *data, yaffs_Spare *spare);
23 int nandmtd_EraseBlockInNAND(yaffs_Device *dev, int blockNumber);
24 int nandmtd_InitialiseNAND(yaffs_Device *dev);
25 #endif
26
27
28
29