diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-04-17 16:41:13 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-29 23:28:39 -0400 |
commit | 28fe3c1963b0bafa56ec92df1987828090151d87 (patch) | |
tree | 021985387ca7d13dafd1571f1c3e9ad6f3051084 /fs/hpfs/super.c | |
parent | 77ee26e44c28823a29bc09091950544566ae7cea (diff) | |
download | linux-stable-28fe3c1963b0bafa56ec92df1987828090151d87.tar.gz linux-stable-28fe3c1963b0bafa56ec92df1987828090151d87.tar.bz2 linux-stable-28fe3c1963b0bafa56ec92df1987828090151d87.zip |
hpfs: assorted endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hpfs/super.c')
-rw-r--r-- | fs/hpfs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hpfs/super.c b/fs/hpfs/super.c index 08e85b019131..706a12c083ea 100644 --- a/fs/hpfs/super.c +++ b/fs/hpfs/super.c @@ -572,7 +572,7 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent) mark_buffer_dirty(bh2); } - if (spareblock->hotfixes_used || le32_to_cpu(spareblock->n_spares_used)) { + if (spareblock->hotfixes_used || spareblock->n_spares_used) { if (errs >= 2) { printk("HPFS: Hotfixes not supported here, try chkdsk\n"); mark_dirty(s, 0); |