blob: 718504eeac548cda9c3b518db00b15062328defb [file] [log] [blame]
William Juul0e8cc8b2007-11-15 11:13:05 +01001/*
Wolfgang Denk4b070802008-08-14 14:41:06 +02002 * YAFFS: Yet another Flash File System . A NAND-flash specific file system.
William Juul0e8cc8b2007-11-15 11:13:05 +01003 *
Charles Manning753ac612012-05-09 16:55:17 +00004 * Copyright (C) 2002-2011 Aleph One Ltd.
William Juul0e8cc8b2007-11-15 11:13:05 +01005 * for Toby Churchill Ltd and Brightstar Engineering
6 *
7 * Created by Charles Manning <charles@aleph1.co.uk>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License version 2.1 as
11 * published by the Free Software Foundation.
12 *
13 * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
14 */
15
16/*
17 * Header file for using yaffs in an application via
18 * a direct interface.
19 */
20
21
22#ifndef __YAFFSCFG_H__
23#define __YAFFSCFG_H__
24
25
Charles Manning753ac612012-05-09 16:55:17 +000026#include "yportenv.h"
William Juul0e8cc8b2007-11-15 11:13:05 +010027
Charles Manning753ac612012-05-09 16:55:17 +000028#define YAFFSFS_N_HANDLES 100
29#define YAFFSFS_N_DSC 20
William Juul0e8cc8b2007-11-15 11:13:05 +010030
31
Charles Manning753ac612012-05-09 16:55:17 +000032struct yaffsfs_DeviceConfiguration {
33 const YCHAR *prefix;
34 struct yaffs_dev *dev;
35};
William Juul0e8cc8b2007-11-15 11:13:05 +010036
37
William Juul0e8cc8b2007-11-15 11:13:05 +010038#endif