diff options
| author | wdenk <wdenk> | 2003-06-27 21:31:46 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-06-27 21:31:46 +0000 | 
| commit | 8bde7f776c77b343aca29b8c7b58464d915ac245 (patch) | |
| tree | 20f1fd99975215e7c658454a15cdb4ed4694e2d4 /fs/jffs2/jffs2_1pass.c | |
| parent | 993cad9364c6b87ae429d1ed1130d8153f6f027e (diff) | |
| download | olio-uboot-2014.01-8bde7f776c77b343aca29b8c7b58464d915ac245.tar.xz olio-uboot-2014.01-8bde7f776c77b343aca29b8c7b58464d915ac245.zip | |
* Code cleanup:LABEL_2003_06_27_2340
  - remove trailing white space, trailing empty lines, C++ comments, etc.
  - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
* Patches by Kenneth Johansson, 25 Jun 2003:
  - major rework of command structure
    (work done mostly by Michal Cendrowski and Joakim Kristiansen)
Diffstat (limited to 'fs/jffs2/jffs2_1pass.c')
| -rw-r--r-- | fs/jffs2/jffs2_1pass.c | 11 | 
1 files changed, 2 insertions, 9 deletions
| diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c index a5d958359..3fd4e52b3 100644 --- a/fs/jffs2/jffs2_1pass.c +++ b/fs/jffs2/jffs2_1pass.c @@ -802,7 +802,7 @@ dump_fragments(struct b_lists *pL)  		putLabeledWord("\tbuild_list: compr = ", jNode->compr);  		putLabeledWord("\tbuild_list: usercompr = ", jNode->usercompr);  		putLabeledWord("\tbuild_list: flags = ", jNode->flags); -		putLabeledWord("\tbuild_list: offset = ", b->offset);	// FIXME: ? [RS] +		putLabeledWord("\tbuild_list: offset = ", b->offset);	/* FIXME: ? [RS] */  		b = b->next;  	}  } @@ -832,7 +832,7 @@ dump_dirents(struct b_lists *pL)  		putLabeledWord("\tbuild_list: type = ", jDir->type);  		putLabeledWord("\tbuild_list: node_crc = ", jDir->node_crc);  		putLabeledWord("\tbuild_list: name_crc = ", jDir->name_crc); -		putLabeledWord("\tbuild_list: offset = ", b->offset); 	// FIXME: ? [RS] +		putLabeledWord("\tbuild_list: offset = ", b->offset); 	/* FIXME: ? [RS] */  		b = b->next;  	}  } @@ -935,9 +935,6 @@ jffs2_1pass_build_lists(struct part_info * part)  } - - -  static u32  jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)  { @@ -965,7 +962,6 @@ jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)  } -  static struct b_lists *  jffs2_get_list(struct part_info * part, const char *who)  { @@ -1005,9 +1001,6 @@ jffs2_1pass_ls(struct part_info * part, const char *fname)  } - - -  /* Load a file from flash into memory. fname can be a full path */  u32  jffs2_1pass_load(char *dest, struct part_info * part, const char *fname) |