summaryrefslogtreecommitdiff
path: root/yaffs_packedtags1.c
diff options
context:
space:
mode:
authorCharles Manning <cdhmanning@gmail.com>2011-02-01 10:57:18 +1300
committerCharles Manning <cdhmanning@gmail.com>2011-02-01 10:57:18 +1300
commit6500cebaa2c93512d544719956af259ca13f83b7 (patch)
treeaab99283b974185ddf521defbad25b81779b684c /yaffs_packedtags1.c
parent6120ba5a0a029e945f4a2e7e5955896f112d4adc (diff)
yaffs: Clean up as per Ryan's comments
Clean up a whole lot of code issues raised by Ryan. Some further reformatting etc to be mor kernel friendly. Signed-off-by: Charles Manning <cdhmanning@gmail.com>
Diffstat (limited to 'yaffs_packedtags1.c')
-rw-r--r--yaffs_packedtags1.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/yaffs_packedtags1.c b/yaffs_packedtags1.c
index 873f065..b35efe0 100644
--- a/yaffs_packedtags1.c
+++ b/yaffs_packedtags1.c
@@ -14,6 +14,14 @@
#include "yaffs_packedtags1.h"
#include "yportenv.h"
+static const u8 all_ff[20] = {
+ 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff
+};
+
void yaffs_pack_tags1(struct yaffs_packed_tags1 *pt,
const struct yaffs_ext_tags *t)
{
@@ -30,11 +38,6 @@ void yaffs_pack_tags1(struct yaffs_packed_tags1 *pt,
void yaffs_unpack_tags1(struct yaffs_ext_tags *t,
const struct yaffs_packed_tags1 *pt)
{
- static const u8 all_ff[12] = {
- 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff
- };
if (memcmp(all_ff, pt, sizeof(struct yaffs_packed_tags1))) {
t->block_bad = 0;