Re: [PATCH] crypto: chelsio - Make function aead_ccm_validate_input static

2018-02-15 Thread Herbert Xu
On Tue, Feb 06, 2018 at 11:09:20PM +, Colin King wrote: > From: Colin Ian King > > Function aead_ccm_validate_input is local to the source and does not > need to be in global scope, so make it static. > > Cleans up sparse warning: > drivers/crypto/chelsio/chcr_algo.c:2627:5: warning: symbol

[PATCH] crypto: chelsio - Make function aead_ccm_validate_input static

2018-02-06 Thread Colin King
From: Colin Ian King Function aead_ccm_validate_input is local to the source and does not need to be in global scope, so make it static. Cleans up sparse warning: drivers/crypto/chelsio/chcr_algo.c:2627:5: warning: symbol 'aead_ccm_validate_input' was not declared. Should it be static? Signed-o