FAT_VALID_MEDIA(): remove pointless test
The on-disk media specification field in FAT is only 8-bits, so testing for <=0xff is pointless, and can generate a "comparison is always true due to limited range of data type" warning. While we're there, convert FAT_VALID_MEDIA() into a C function - the present implementation is buggy: it generates either one or two references to its argument. Cc: Frank Seidel <fseidel@suse.de> Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
c7a6c4edc7
commit
73f20e58b1
@ -1215,7 +1215,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
|
||||
*/
|
||||
|
||||
media = b->media;
|
||||
if (!FAT_VALID_MEDIA(media)) {
|
||||
if (!fat_valid_media(media)) {
|
||||
if (!silent)
|
||||
printk(KERN_ERR "FAT: invalid media value (0x%02x)\n",
|
||||
media);
|
||||
|
Reference in New Issue
Block a user