mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 07:31:45 +00:00
crypto: omap-aes - Staticize local symbols
Local symbols used only in this file are made static. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Cc: Dmitry Kasatkin <dmitry.kasatkin@nokia.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
47aff65241
commit
034568e84f
@ -554,7 +554,7 @@ static int omap_aes_crypt_dma_stop(struct omap_aes_dev *dd)
|
||||
return err;
|
||||
}
|
||||
|
||||
int omap_aes_check_aligned(struct scatterlist *sg)
|
||||
static int omap_aes_check_aligned(struct scatterlist *sg)
|
||||
{
|
||||
while (sg) {
|
||||
if (!IS_ALIGNED(sg->offset, 4))
|
||||
@ -566,7 +566,7 @@ int omap_aes_check_aligned(struct scatterlist *sg)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int omap_aes_copy_sgs(struct omap_aes_dev *dd)
|
||||
static int omap_aes_copy_sgs(struct omap_aes_dev *dd)
|
||||
{
|
||||
void *buf_in, *buf_out;
|
||||
int pages;
|
||||
|
Loading…
Reference in New Issue
Block a user