Skip to content

Commit

Permalink
mtip32xx: mark symbols static where possible
Browse files Browse the repository at this point in the history
We get 1 warning when biuld kernel with W=1:
drivers/block/mtip32xx/mtip32xx.c:3689:6: warning: no previous prototype for
 'mtip_block_release' [-Wmissing-prototypes]

In fact, this function is only used in the file in which it is declared
and don't need a declaration, but can be made static.
so this patch marks it 'static'.

Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org>
Signed-off-by: Jens Axboe <axboe@fb.com>
  • Loading branch information
Baoyou Xie authored and Jens Axboe committed Aug 29, 2016
1 parent 88c7b2b commit 99e6b87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/block/mtip32xx/mtip32xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -3686,7 +3686,7 @@ static int mtip_block_open(struct block_device *dev, fmode_t mode)
return -ENODEV;
}

void mtip_block_release(struct gendisk *disk, fmode_t mode)
static void mtip_block_release(struct gendisk *disk, fmode_t mode)
{
}

Expand Down

0 comments on commit 99e6b87

Please sign in to comment.