X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yaffs_tagscompat.c;h=7622b1af7c0d3ff3970e7020fe69dbd062fd3dec;hp=b51bccd6c91ab50a099e6a262739bfdf460af8a7;hb=7b7ff60a62448da4850791aa986c2c19354e93f2;hpb=ce988b0f03f8e930859563e59ea90bdc193d1c9f diff --git a/yaffs_tagscompat.c b/yaffs_tagscompat.c index b51bccd..7622b1a 100644 --- a/yaffs_tagscompat.c +++ b/yaffs_tagscompat.c @@ -1,16 +1,14 @@ /* - * YAFFS: Yet another FFS. A NAND-flash specific file system. - * yaffs_tagscompat.h: Tags compatability layer to use YAFFS1 formatted NAND. + * YAFFS: Yet Another Flash File System. A NAND-flash specific file system. * - * Copyright (C) 2002 Aleph One Ltd. + * Copyright (C) 2002-2007 Aleph One Ltd. + * for Toby Churchill Ltd and Brightstar Engineering * * Created by Charles Manning * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. - * - * $Id: yaffs_tagscompat.c,v 1.8 2005-11-29 20:54:32 marty Exp $ */ #include "yaffs_guts.h" @@ -47,7 +45,7 @@ static const char yaffs_countBitsTable[256] = { 4, 5, 5, 6, 5, 6, 6, 7, 5, 6, 6, 7, 6, 7, 7, 8 }; -static int yaffs_CountBits(__u8 x) +int yaffs_CountBits(__u8 x) { int retVal; retVal = yaffs_countBitsTable[x];