summaryrefslogtreecommitdiff
path: root/yaffs_nand.c
diff options
context:
space:
mode:
authorCharles Manning <cdhmanning@gmail.com>2010-10-27 14:43:12 +1300
committerCharles Manning <cdhmanning@gmail.com>2010-10-27 14:43:12 +1300
commitf330fefa27f2c87f7dff414fe6227261327663b7 (patch)
treeb69669fe11b8e90123473a54754f386e2a36794e /yaffs_nand.c
parent3d61aa9e6a51f89c067558dee27b02be4f564606 (diff)
yaffs Further name changes and file reorganisation
Signed-off-by: Charles Manning <cdhmanning@gmail.com>
Diffstat (limited to 'yaffs_nand.c')
-rw-r--r--yaffs_nand.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/yaffs_nand.c b/yaffs_nand.c
index d1fe84a..d721fa6 100644
--- a/yaffs_nand.c
+++ b/yaffs_nand.c
@@ -22,22 +22,22 @@ int yaffs_rd_chunk_tags_nand(yaffs_dev_t *dev, int nand_chunk,
yaffs_ext_tags *tags)
{
int result;
- yaffs_ext_tags localTags;
+ yaffs_ext_tags local_tags;
- int realignedChunkInNAND = nand_chunk - dev->chunk_offset;
+ int realigned_chunk = nand_chunk - dev->chunk_offset;
dev->n_page_reads++;
/* If there are no tags provided, use local tags to get prioritised gc working */
if (!tags)
- tags = &localTags;
+ tags = &local_tags;
if (dev->param.read_chunk_tags_fn)
- result = dev->param.read_chunk_tags_fn(dev, realignedChunkInNAND, buffer,
+ result = dev->param.read_chunk_tags_fn(dev, realigned_chunk, buffer,
tags);
else
result = yaffs_tags_compat_rd(dev,
- realignedChunkInNAND,
+ realigned_chunk,
buffer,
tags);
if (tags &&