Re: [PATCH] crypto: cryptd: make cryptd_max_cpu_qlen module parameter static

2017-12-11 Thread Herbert Xu
On Thu, Nov 30, 2017 at 11:26:14AM +, Colin King wrote: > From: Colin Ian King > > The cryptd_max_cpu_qlen module parameter is local to the source and does > not need to be in global scope, so make it static. > > Cleans up sparse warning: > crypto/cryptd.c:35:14: warning: symbol 'cryptd_max_

[PATCH] crypto: cryptd: make cryptd_max_cpu_qlen module parameter static

2017-11-30 Thread Colin King
From: Colin Ian King The cryptd_max_cpu_qlen module parameter is local to the source and does not need to be in global scope, so make it static. Cleans up sparse warning: crypto/cryptd.c:35:14: warning: symbol 'cryptd_max_cpu_qlen' was not declared. Should it be static? Signed-off-by: Colin Ian