Commit 756bed2d authored by Fabio Baltieri's avatar Fabio Baltieri Committed by Linus Walleij

crypto: ux500/hash: add missing static qualifiers

Add missing static qualifiers to hash_process_data and hash_hw_final.
Signed-off-by: default avatarFabio Baltieri <fabio.baltieri@linaro.org>
Acked-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent e3f51147
...@@ -792,8 +792,7 @@ void hash_begin(struct hash_device_data *device_data, struct hash_ctx *ctx) ...@@ -792,8 +792,7 @@ void hash_begin(struct hash_device_data *device_data, struct hash_ctx *ctx)
HASH_CLEAR_BITS(&device_data->base->str, HASH_STR_NBLW_MASK); HASH_CLEAR_BITS(&device_data->base->str, HASH_STR_NBLW_MASK);
} }
int hash_process_data( static int hash_process_data(struct hash_device_data *device_data,
struct hash_device_data *device_data,
struct hash_ctx *ctx, struct hash_req_ctx *req_ctx, struct hash_ctx *ctx, struct hash_req_ctx *req_ctx,
int msg_length, u8 *data_buffer, u8 *buffer, u8 *index) int msg_length, u8 *data_buffer, u8 *buffer, u8 *index)
{ {
...@@ -992,7 +991,7 @@ static int hash_dma_final(struct ahash_request *req) ...@@ -992,7 +991,7 @@ static int hash_dma_final(struct ahash_request *req)
* hash_hw_final - The final hash calculation function * hash_hw_final - The final hash calculation function
* @req: The hash request for the job. * @req: The hash request for the job.
*/ */
int hash_hw_final(struct ahash_request *req) static int hash_hw_final(struct ahash_request *req)
{ {
int ret = 0; int ret = 0;
struct crypto_ahash *tfm = crypto_ahash_reqtfm(req); struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
......
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