]> git.baikalelectronics.ru Git - kernel.git/commit
mtip32xx: mark symbols static where possible
authorBaoyou Xie <baoyou.xie@linaro.org>
Fri, 26 Aug 2016 06:08:53 +0000 (14:08 +0800)
committerJens Axboe <axboe@fb.com>
Mon, 29 Aug 2016 14:13:21 +0000 (08:13 -0600)
commit54c0fec7e06906376db8c93f9c41c5fb23e3b5f2
tree6334b94b9c1fa7cf815d52f2136d283cd47234ab
parentc0f8921bc7ae63a2c7753b190f1aab9cae29a702
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: Baoyou Xie <baoyou.xie@linaro.org>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/block/mtip32xx/mtip32xx.c