lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sat, 4 Jan 2014 03:44:39 +0100 From: Peter Huewe <peterhuewe@....de> To: James Morris <jmorris@...ei.org> Cc: Ashley Lai <ashley@...leylai.com>, tpmdd-devel@...ts.sourceforge.net, linux-kernel@...r.kernel.org, Fengguang Wu <fengguang.wu@...el.com>, Jason Gunthorpe <jgunthorpe@...idianresearch.com>, Peter Huewe <peterhuewe@....de> Subject: [PATCH 05/15] tpm/tpm_i2c_atmel: fix coccinelle warnings From: Fengguang Wu <fengguang.wu@...el.com> drivers/char/tpm/tpm_i2c_atmel.c:178:8-9: WARNING: return of 0/1 in function 'i2c_atmel_req_canceled' with return type bool Return statements in functions returning bool should use true/false instead of 1/0. Generated by: coccinelle/misc/boolreturn.cocci CC: Jason Gunthorpe <jgunthorpe@...idianresearch.com> CC: Peter Huewe <peterhuewe@....de> Acked-by: Jason Gunthorpe <jgunthorpe@...idianresearch.com> Signed-off-by: Fengguang Wu <fengguang.wu@...el.com> Signed-off-by: Peter Huewe <peterhuewe@....de> --- drivers/char/tpm/tpm_i2c_atmel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/char/tpm/tpm_i2c_atmel.c b/drivers/char/tpm/tpm_i2c_atmel.c index c3cd7fe..af6805b 100644 --- a/drivers/char/tpm/tpm_i2c_atmel.c +++ b/drivers/char/tpm/tpm_i2c_atmel.c @@ -175,7 +175,7 @@ static struct attribute_group i2c_atmel_attr_grp = { static bool i2c_atmel_req_canceled(struct tpm_chip *chip, u8 status) { - return 0; + return false; } static const struct tpm_vendor_specific i2c_atmel = { -- 1.8.1.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists