From f330fefa27f2c87f7dff414fe6227261327663b7 Mon Sep 17 00:00:00 2001 From: Charles Manning Date: Wed, 27 Oct 2010 14:43:12 +1300 Subject: yaffs Further name changes and file reorganisation Signed-off-by: Charles Manning --- yaffs_nand.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'yaffs_nand.c') 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 && -- cgit v1.2.3