linux-integrity.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next] char/tpm: simplify the return expression of tpm_tis_synquacer_module_init()
@ 2020-12-10 13:55 Zheng Yongjun
  2020-12-11 10:53 ` Jarkko Sakkinen
  0 siblings, 1 reply; 2+ messages in thread
From: Zheng Yongjun @ 2020-12-10 13:55 UTC (permalink / raw)
  To: peterhuewe, jarkko, jgg, linux-integrity, linux-kernel; +Cc: Zheng Yongjun

Simplify the return expression.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
---
 drivers/char/tpm/tpm_tis_synquacer.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/drivers/char/tpm/tpm_tis_synquacer.c b/drivers/char/tpm/tpm_tis_synquacer.c
index e47bdd272704..3b4ae2f23f09 100644
--- a/drivers/char/tpm/tpm_tis_synquacer.c
+++ b/drivers/char/tpm/tpm_tis_synquacer.c
@@ -188,13 +188,8 @@ static struct platform_driver tis_synquacer_drv = {
 
 static int __init tpm_tis_synquacer_module_init(void)
 {
-	int rc;
 
-	rc = platform_driver_register(&tis_synquacer_drv);
-	if (rc)
-		return rc;
-
-	return 0;
+	return platform_driver_register(&tis_synquacer_drv);
 }
 
 static void __exit tpm_tis_synquacer_module_exit(void)
-- 
2.22.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-12-11 10:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-10 13:55 [PATCH -next] char/tpm: simplify the return expression of tpm_tis_synquacer_module_init() Zheng Yongjun
2020-12-11 10:53 ` Jarkko Sakkinen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).