powerpc/spufs: Fix build warning when CONFIG_PROC_FS=n
authorYueHaibing <yuehaibing@huawei.com>
Tue, 8 Mar 2022 10:09:28 +0000 (18:09 +0800)
committerMichael Ellerman <mpe@ellerman.id.au>
Tue, 8 Mar 2022 11:07:41 +0000 (22:07 +1100)
commit5986f6b6575ac830ede9648cfb64353c58067a9f
tree34f48b89255d3a41a31cacdd019e8ea23f0f239e
parentd601fd24e6964967f115f036a840f4f28488f63f
powerpc/spufs: Fix build warning when CONFIG_PROC_FS=n

arch/powerpc/platforms/cell/spufs/sched.c:1055:12: warning: ‘show_spu_loadavg’ defined but not used [-Wunused-function]
 static int show_spu_loadavg(struct seq_file *s, void *private)
            ^~~~~~~~~~~~~~~~

Move it into #ifdef block to fix this, also remove unneeded semicolon.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20220308100928.23540-1-yuehaibing@huawei.com
arch/powerpc/platforms/cell/spufs/sched.c