diff options
Diffstat (limited to 'fs/jffs2/jffs2_private.h')
| -rw-r--r-- | fs/jffs2/jffs2_private.h | 46 | 
1 files changed, 23 insertions, 23 deletions
| diff --git a/fs/jffs2/jffs2_private.h b/fs/jffs2/jffs2_private.h index c6d5fe360..d53e5764b 100644 --- a/fs/jffs2/jffs2_private.h +++ b/fs/jffs2/jffs2_private.h @@ -42,48 +42,48 @@ static inline int  hdr_crc(struct jffs2_unknown_node *node)  {  #if 1 -        u32 crc = crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_unknown_node) - 4); +	u32 crc = crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_unknown_node) - 4);  #else  	/* what's the semantics of this? why is this here? */ -        u32 crc = crc32_no_comp(~0, (unsigned char *)node, sizeof(struct jffs2_unknown_node) - 4); +	u32 crc = crc32_no_comp(~0, (unsigned char *)node, sizeof(struct jffs2_unknown_node) - 4); -        crc ^= ~0; +	crc ^= ~0;  #endif -        if (node->hdr_crc != crc) { -                return 0; -        } else { -                return 1; -        } +	if (node->hdr_crc != crc) { +		return 0; +	} else { +		return 1; +	}  }  static inline int  dirent_crc(struct jffs2_raw_dirent *node)  { -        if (node->node_crc != crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_raw_dirent) - 8)) { -                return 0; -        } else { -                return 1; -        } +	if (node->node_crc != crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_raw_dirent) - 8)) { +		return 0; +	} else { +		return 1; +	}  }  static inline int  dirent_name_crc(struct jffs2_raw_dirent *node)  { -        if (node->name_crc != crc32_no_comp(0, (unsigned char *)&(node->name), node->nsize)) { -                return 0; -        } else { -                return 1; -        } +	if (node->name_crc != crc32_no_comp(0, (unsigned char *)&(node->name), node->nsize)) { +		return 0; +	} else { +		return 1; +	}  }  static inline int  inode_crc(struct jffs2_raw_inode *node)  { -        if (node->node_crc != crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_raw_inode) - 8)) { -                return 0; -        } else { -                return 1; -        } +	if (node->node_crc != crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_raw_inode) - 8)) { +		return 0; +	} else { +		return 1; +	}  }  #endif /* jffs2_private.h */ |