Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 99e6b87e authored by Baoyou Xie's avatar Baoyou Xie Committed by Jens Axboe
Browse files

mtip32xx: mark symbols static where possible



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: default avatarBaoyou Xie <baoyou.xie@linaro.org>
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent 88c7b2b7
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -3686,7 +3686,7 @@ static int mtip_block_open(struct block_device *dev, fmode_t mode)
	return -ENODEV;
	return -ENODEV;
}
}


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