* [PATCH -next] net: ethernet: Simplify bool conversion
@ 2022-11-04 1:06 Yang Li
2022-11-04 2:16 ` Bagas Sanjaya
0 siblings, 1 reply; 2+ messages in thread
From: Yang Li @ 2022-11-04 1:06 UTC (permalink / raw)
To: davem
Cc: edumazet, kuba, pabeni, richardcochran, netdev, linux-renesas-soc,
linux-kernel, Yang Li, Abaci Robot
./drivers/net/ethernet/renesas/rcar_gen4_ptp.c:32:40-45: WARNING: conversion to bool not needed here
Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2729
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
drivers/net/ethernet/renesas/rcar_gen4_ptp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/renesas/rcar_gen4_ptp.c b/drivers/net/ethernet/renesas/rcar_gen4_ptp.c
index c007e33c47e1..37f7359678e5 100644
--- a/drivers/net/ethernet/renesas/rcar_gen4_ptp.c
+++ b/drivers/net/ethernet/renesas/rcar_gen4_ptp.c
@@ -29,7 +29,7 @@ static const struct rcar_gen4_ptp_reg_offset s4_offs = {
static int rcar_gen4_ptp_adjfine(struct ptp_clock_info *ptp, long scaled_ppm)
{
struct rcar_gen4_ptp_private *ptp_priv = ptp_to_priv(ptp);
- bool neg_adj = scaled_ppm < 0 ? true : false;
+ bool neg_adj = scaled_ppm < 0;
s64 addend = ptp_priv->default_addend;
s64 diff;
--
2.20.1.7.g153144c
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH -next] net: ethernet: Simplify bool conversion
2022-11-04 1:06 [PATCH -next] net: ethernet: Simplify bool conversion Yang Li
@ 2022-11-04 2:16 ` Bagas Sanjaya
0 siblings, 0 replies; 2+ messages in thread
From: Bagas Sanjaya @ 2022-11-04 2:16 UTC (permalink / raw)
To: Yang Li
Cc: davem, edumazet, kuba, pabeni, richardcochran, netdev,
linux-renesas-soc, linux-kernel, Abaci Robot
[-- Attachment #1: Type: text/plain, Size: 341 bytes --]
On Fri, Nov 04, 2022 at 09:06:35AM +0800, Yang Li wrote:
> ./drivers/net/ethernet/renesas/rcar_gen4_ptp.c:32:40-45: WARNING: conversion to bool not needed here
>
Similar requested description change as [1].
[1]: https://lore.kernel.org/lkml/Y0LQF02sKheWtkD8@debian.me/
--
An old man doll... just what I always wanted! - Clara
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-04 2:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-04 1:06 [PATCH -next] net: ethernet: Simplify bool conversion Yang Li
2022-11-04 2:16 ` Bagas Sanjaya
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).