From: Bart Van Assche Date: Tue, 14 Jun 2016 15:04:32 +0000 (+0200) Subject: block/blk-cgroup.c: Declare local symbols static X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e1f3b9412edb22774cebf47e353b6ccc1b779cfe;p=linux-beck.git block/blk-cgroup.c: Declare local symbols static Detected by sparse. Signed-off-by: Bart Van Assche Cc: Tejun Heo Signed-off-by: Jens Axboe --- diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c index 66e6f1aae02e..dd38e5ced4a3 100644 --- a/block/blk-cgroup.c +++ b/block/blk-cgroup.c @@ -905,7 +905,7 @@ static int blkcg_print_stat(struct seq_file *sf, void *v) return 0; } -struct cftype blkcg_files[] = { +static struct cftype blkcg_files[] = { { .name = "stat", .flags = CFTYPE_NOT_ON_ROOT, @@ -914,7 +914,7 @@ struct cftype blkcg_files[] = { { } /* terminate */ }; -struct cftype blkcg_legacy_files[] = { +static struct cftype blkcg_legacy_files[] = { { .name = "reset_stats", .write_u64 = blkcg_reset_stats,