crypto: sig - Remove some unused functions

Message ID 20230630075424.44776-1-jiapeng.chong@linux.alibaba.com
State New
Headers
Series crypto: sig - Remove some unused functions |

Commit Message

Jiapeng Chong June 30, 2023, 7:54 a.m. UTC
  These functions are defined in the sig.c file, but not called elsewhere,
so delete these unused functions.

crypto/sig.c:24:34: warning: unused function '__crypto_sig_tfm'.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=5701
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
---
 crypto/sig.c | 5 -----
 1 file changed, 5 deletions(-)
  

Comments

Herbert Xu July 14, 2023, 8:55 a.m. UTC | #1
On Fri, Jun 30, 2023 at 03:54:24PM +0800, Jiapeng Chong wrote:
> These functions are defined in the sig.c file, but not called elsewhere,
> so delete these unused functions.
> 
> crypto/sig.c:24:34: warning: unused function '__crypto_sig_tfm'.
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=5701
> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
> ---
>  crypto/sig.c | 5 -----
>  1 file changed, 5 deletions(-)

Patch applied.  Thanks.
  

Patch

diff --git a/crypto/sig.c b/crypto/sig.c
index b48c18ec65cd..224c47019297 100644
--- a/crypto/sig.c
+++ b/crypto/sig.c
@@ -21,11 +21,6 @@ 
 
 static const struct crypto_type crypto_sig_type;
 
-static inline struct crypto_sig *__crypto_sig_tfm(struct crypto_tfm *tfm)
-{
-	return container_of(tfm, struct crypto_sig, base);
-}
-
 static int crypto_sig_init_tfm(struct crypto_tfm *tfm)
 {
 	if (tfm->__crt_alg->cra_type != &crypto_sig_type)