From 7903852589a615bbf32c09a1360930ccd07365a2 Mon Sep 17 00:00:00 2001 From: Namjae Jeon Date: Wed, 26 Sep 2012 11:34:48 +1000 Subject: [PATCH] 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 --- fs/fat/fatent.c | 3 --- 1 file changed, 3 deletions(-) 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); -- 2.39.2