summaryrefslogtreecommitdiff
path: root/yaffs_packedtags1.c
diff options
context:
space:
mode:
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;