Commit 029c053c authored by Fabio Estevam's avatar Fabio Estevam Committed by Herbert Xu

crypto: caam - Staticize caam_jr_shutdown()

caam_jr_shutdown() is only used in this file, so it can be
made static.

This avoids the following sparse warning:

drivers/crypto/caam/jr.c:68:5: warning: symbol 'caam_jr_shutdown' was not declared. Should it be static?
Signed-off-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 26d52ea3
...@@ -65,7 +65,7 @@ static int caam_reset_hw_jr(struct device *dev) ...@@ -65,7 +65,7 @@ static int caam_reset_hw_jr(struct device *dev)
/* /*
* Shutdown JobR independent of platform property code * Shutdown JobR independent of platform property code
*/ */
int caam_jr_shutdown(struct device *dev) static int caam_jr_shutdown(struct device *dev)
{ {
struct caam_drv_private_jr *jrp = dev_get_drvdata(dev); struct caam_drv_private_jr *jrp = dev_get_drvdata(dev);
dma_addr_t inpbusaddr, outbusaddr; dma_addr_t inpbusaddr, outbusaddr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment