Remove CONFIG_YAFFS_USE_CHUNK_SIZE
[yaffs2.git] / yaffs_tagsvalidity.c
1
2 /*
3  * YAFFS: Yet another FFS. A NAND-flash specific file system. 
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  * $Id: yaffs_tagsvalidity.c,v 1.1 2005-04-29 18:09:16 charles Exp $
15  */
16 //yaffs_tagsvalidity.c
17
18 #include "yaffs_tagsvalidity.h"
19
20
21
22 void yaffs_InitialiseTags(yaffs_ExtendedTags *tags)
23 {
24         memset(tags,0,sizeof(yaffs_ExtendedTags));
25         tags->validMarker0 = 0xAAAAAAAA;
26         tags->validMarker1 = 0x55555555;
27 }
28
29 int yaffs_ValidateTags(yaffs_ExtendedTags *tags)
30 {
31         return (tags->validMarker0 == 0xAAAAAAAA &&
32                 tags->validMarker1 == 0x55555555);
33
34 }
35