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-Url: https://git.stricted.de/?a=commitdiff_plain;h=126ac0518c71ba0e54e599dc129b76027a7c2d23;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.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 67fd23744720..260705c58062 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);