From: Namjae Jeon Date: Fri, 5 Oct 2012 00:15:02 +0000 (-0700) Subject: fat: no need to reset EOF in ent_put for FAT32 X-Git-Tag: upstream/snapshot3+hdmi~6530^2~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=126ac0518c71ba0e54e599dc129b76027a7c2d23;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git fat: no need to reset EOF in ent_put for FAT32 #define FAT_ENT_EOF(EOF_FAT32) there is no need to reset value of 'new' for FAT32 as the values is already correct Signed-off-by: Namjae Jeon Signed-off-by: Amit Sahrawat Acked-by: OGAWA Hirofumi Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/fat/fatent.c b/fs/fat/fatent.c index 67fd237..260705c 100644 --- a/fs/fat/fatent.c +++ b/fs/fat/fatent.c @@ -186,9 +186,6 @@ static void fat16_ent_put(struct fat_entry *fatent, int new) static void fat32_ent_put(struct fat_entry *fatent, int new) { - if (new == FAT_ENT_EOF) - new = EOF_FAT32; - WARN_ON(new & 0xf0000000); new |= le32_to_cpu(*fatent->u.ent32_p) & ~0x0fffffff; *fatent->u.ent32_p = cpu_to_le32(new);