diff options
author | Giovanni Cabiddu <[email protected]> | 2020-10-07 13:43:45 +0100 |
---|---|---|
committer | Herbert Xu <[email protected]> | 2020-10-30 17:34:45 +1100 |
commit | daf88f3757ecb7aed4dd05a1ca8c8b4ac378d6c3 (patch) | |
tree | 448c5e24d8ed9edd8ec18036a0c8001cec9dd1fa | |
parent | 3650b228f83adda7e5ee532e2b90429c03f7b9ec (diff) |
crypto: qat - remove unused function
Remove unused function qat_dh_get_params().
This is to fix the following warning when compiling the driver with
CC=clang W=1
drivers/crypto/qat/qat_common/qat_asym_algs.c:207:34: warning: unused function 'qat_dh_get_params' [-Wunused-function]
Signed-off-by: Giovanni Cabiddu <[email protected]>
Reviewed-by: Fiona Trahe <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
-rw-r--r-- | drivers/crypto/qat/qat_common/qat_asym_algs.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/crypto/qat/qat_common/qat_asym_algs.c b/drivers/crypto/qat/qat_common/qat_asym_algs.c index 846569ec9066..f112078be868 100644 --- a/drivers/crypto/qat/qat_common/qat_asym_algs.c +++ b/drivers/crypto/qat/qat_common/qat_asym_algs.c @@ -204,11 +204,6 @@ static unsigned long qat_dh_fn_id(unsigned int len, bool g2) }; } -static inline struct qat_dh_ctx *qat_dh_get_params(struct crypto_kpp *tfm) -{ - return kpp_tfm_ctx(tfm); -} - static int qat_dh_compute_value(struct kpp_request *req) { struct crypto_kpp *tfm = crypto_kpp_reqtfm(req); |