summaryrefslogtreecommitdiff
path: root/yaffs_allocator.c
diff options
context:
space:
mode:
authorCharles Manning <cdhmanning@gmail.com>2010-11-02 08:04:32 +1300
committerCharles Manning <cdhmanning@gmail.com>2010-11-02 08:04:32 +1300
commitcf6888f05f691aa1a357e7e94f9bf7b98174bbc3 (patch)
tree84fac8b535a06a1406dc42a1950028e1e0c32102 /yaffs_allocator.c
parent1d65367807dc6c75458c2926b17727ae0765a856 (diff)
yaffs: Change __uxx types to uxx
__u32 -> u32 and such. Signed-off-by: Charles Manning <cdhmanning@gmail.com>
Diffstat (limited to 'yaffs_allocator.c')
-rw-r--r--yaffs_allocator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/yaffs_allocator.c b/yaffs_allocator.c
index 66ba5a6..6db9856 100644
--- a/yaffs_allocator.c
+++ b/yaffs_allocator.c
@@ -140,7 +140,7 @@ static int yaffs_create_tnodes(yaffs_dev_t *dev, int n_tnodes)
struct yaffs_allocator *allocator = (struct yaffs_allocator *)dev->allocator;
int i;
yaffs_tnode_t *new_tnodes;
- __u8 *mem;
+ u8 *mem;
yaffs_tnode_t *curr;
yaffs_tnode_t *next;
yaffs_tnodelist_t *tnl;
@@ -157,7 +157,7 @@ static int yaffs_create_tnodes(yaffs_dev_t *dev, int n_tnodes)
/* make these things */
new_tnodes = YMALLOC(n_tnodes * dev->tnode_size);
- mem = (__u8 *)new_tnodes;
+ mem = (u8 *)new_tnodes;
if (!new_tnodes) {
T(YAFFS_TRACE_ERROR,