diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-11-16 16:29:57 +0100 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-11-16 08:32:40 -0700 |
commit | 4121d385f1457d9beb2067d4b5b4659ef3e6c316 (patch) | |
tree | a16137d8136899ba76c7031ebd8fe18637c06b8c | |
parent | 92153d30c7c8863022cad684926d71ffaed6a56d (diff) | |
download | linux-4121d385f1457d9beb2067d4b5b4659ef3e6c316.tar.bz2 |
blk-wbt: fix old-style function declaration
The newly added driver causes a harmless warning in some configurations:
block/blk-wbt.c:250:1: error: ‘inline’ is not at beginning of declaration [-Werror=old-style-declaration]
static bool inline stat_sample_valid(struct blk_rq_stat *stat)
This makes it use the expected format for the declaration.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
-rw-r--r-- | block/blk-wbt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-wbt.c b/block/blk-wbt.c index 20712f0db6ea..9f97594e68ce 100644 --- a/block/blk-wbt.c +++ b/block/blk-wbt.c @@ -247,7 +247,7 @@ static bool calc_wb_limits(struct rq_wb *rwb) return ret; } -static bool inline stat_sample_valid(struct blk_rq_stat *stat) +static inline bool stat_sample_valid(struct blk_rq_stat *stat) { /* * We need at least one read sample, and a minimum of |