X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=fs%2Fbefs%2Fio.c;h=523c8af2d770b08473bfa6200d635ae46364b0e2;hb=a10c38a4f385f5d7c173a263ff6bb2d36021b3bb;hp=7a5b4ec21c56908cb18353a061dcb7b352628425;hpb=c7309e88a694acbe9e42655f02b9dd37c7931424;p=deliverable%2Flinux.git diff --git a/fs/befs/io.c b/fs/befs/io.c index 7a5b4ec21c56..523c8af2d770 100644 --- a/fs/befs/io.c +++ b/fs/befs/io.c @@ -26,7 +26,7 @@ struct buffer_head * befs_bread_iaddr(struct super_block *sb, befs_inode_addr iaddr) { - struct buffer_head *bh = NULL; + struct buffer_head *bh; befs_blocknr_t block = 0; struct befs_sb_info *befs_sb = BEFS_SB(sb); @@ -63,7 +63,7 @@ befs_bread_iaddr(struct super_block *sb, befs_inode_addr iaddr) struct buffer_head * befs_bread(struct super_block *sb, befs_blocknr_t block) { - struct buffer_head *bh = NULL; + struct buffer_head *bh; befs_debug(sb, "---> Enter %s %lu", __func__, (unsigned long)block);