X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fbasic-test%2Fdtest.c;h=f8c617005b857434b5c31b3e62eba09e761f7426;hp=db38cb50fce44e39e25369994098e3170874ade4;hb=6648cbf52d6695755941ff8607fd7a0cda542e05;hpb=41573908f821bcb40750e7c069ea8f5178f630e5 diff --git a/direct/basic-test/dtest.c b/direct/basic-test/dtest.c index db38cb5..f8c6170 100644 --- a/direct/basic-test/dtest.c +++ b/direct/basic-test/dtest.c @@ -1,7 +1,7 @@ /* * YAFFS: Yet another FFS. A NAND-flash specific file system. * - * Copyright (C) 2002-2010 Aleph One Ltd. + * Copyright (C) 2002-2011 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Charles Manning @@ -2516,7 +2516,7 @@ static void print_xattrib_val(const char *path, const char *name) n = yaffs_getxattr(path,name,buffer,sizeof(buffer)); if(n >= 0){ - __u8 *b = (__u8 *)buffer; + u8 *b = (u8 *)buffer; printf("%d bytes:",n); if(n > 10) @@ -2642,7 +2642,7 @@ void big_xattr_test(const char *mountpt) } -void dump_dev_stats(yaffs_dev_t *dev, const char * str) +void dump_dev_stats(struct yaffs_dev *dev, const char * str) { printf("%s\n",str); printf( "space free %d erased %d " @@ -2658,7 +2658,7 @@ void test_flash_traffic(const char *mountpt) char name0[100]; char name1[100]; int i; - yaffs_dev_t *dev; + struct yaffs_dev *dev; yaffs_trace_mask = 0; @@ -2691,9 +2691,9 @@ void link_follow_test(const char *mountpt) int result; int h; - yaffs_traceMask = 0; + yaffs_trace_mask = 0; - yaffs_StartUp(); + yaffs_start_up(); yaffs_mount(mountpt);