From: Ben Dooks (Codethink) Date: Wed, 16 Oct 2019 12:33:17 +0000 (+0100) Subject: pstore: Make pstore_choose_compression() static X-Git-Tag: v5.5-rc1~76^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=8d82cee2f8aa8b9bc806907ecd9e1494c6e8526b;p=users%2Fjedix%2Flinux-maple.git pstore: Make pstore_choose_compression() static The pstore_choose_compression() function is not exported so make it static to avoid the following sparse warning: fs/pstore/platform.c:796:13: warning: symbol 'pstore_choose_compression' was not declared. Should it be static? Signed-off-by: Ben Dooks Link: https://lore.kernel.org/r/20191016123317.3154-1-ben.dooks@codethink.co.uk Fixes: cb095afd4476 ("pstore: Centralize init/exit routines") Signed-off-by: Kees Cook --- diff --git a/fs/pstore/platform.c b/fs/pstore/platform.c index 3d7024662d29..d896457e7c11 100644 --- a/fs/pstore/platform.c +++ b/fs/pstore/platform.c @@ -793,7 +793,7 @@ static void pstore_timefunc(struct timer_list *unused) jiffies + msecs_to_jiffies(pstore_update_ms)); } -void __init pstore_choose_compression(void) +static void __init pstore_choose_compression(void) { const struct pstore_zbackend *step;