swim3: mark swim3_init() static
authorArnd Bergmann <arnd@arndb.de>
Thu, 10 Aug 2023 14:19:23 +0000 (16:19 +0200)
committerJens Axboe <axboe@kernel.dk>
Thu, 10 Aug 2023 14:32:59 +0000 (08:32 -0600)
commitd21fed50c523d87af6456697ad09378060c4f09a
treecd3cefcf1372779d452a3740a8429335b3431c0d
parent4eb44d10766ac0fae5973998fd2a0103df1d3fe1
swim3: mark swim3_init() static

This is the module init function, which by definition is used only
locally, so mark it static to avoid a warning:

drivers/block/swim3.c:1280:5: error: no previous prototype for 'swim3_init' [-Werror=missing-prototypes]

Reviewed-by: Jack Wang <jinpu.wang@ionos.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/swim3.c