diff mbox series

[2/3] platform/mellanox: mlxbf-tmfifo: Remove unnecessary bool conversion

Message ID ZUWIIKbz4vukl8qb@octinomon (mailing list archive)
State Accepted, archived
Headers show
Series None | expand

Commit Message

Jules Irenge Nov. 3, 2023, 11:54 p.m. UTC
This commit fixes coccinelle warning in macro function
IS_VRING_DROP() which complains conversion to bool not needed here.

Signed-off-by: Jules Irenge <jbi.octave@gmail.com>
---
 drivers/platform/mellanox/mlxbf-tmfifo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Ilpo Järvinen Nov. 14, 2023, 11:09 a.m. UTC | #1
On Fri, 3 Nov 2023, Jules Irenge wrote:

> This commit fixes coccinelle warning in macro function
> IS_VRING_DROP() which complains conversion to bool not needed here.
> 
> Signed-off-by: Jules Irenge <jbi.octave@gmail.com>

Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>

Not an end of the world but just in case you have it stored somewhere, my 
email address was lacking the first letter in your post.
Ilpo Järvinen Nov. 14, 2023, 11:11 a.m. UTC | #2
On Tue, 14 Nov 2023, Ilpo Järvinen wrote:

> On Fri, 3 Nov 2023, Jules Irenge wrote:
> 
> > This commit fixes coccinelle warning in macro function
> > IS_VRING_DROP() which complains conversion to bool not needed here.
> > 
> > Signed-off-by: Jules Irenge <jbi.octave@gmail.com>
> 
> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
> 
> Not an end of the world but just in case you have it stored somewhere, my 
> email address was lacking the first letter in your post.

Hi again,

I also realized right after send the reply that this is marked as 2/3 but 
the other two patches didn't make it into lore archives (nor into 
patchwork, I think).
Jules Irenge Nov. 14, 2023, 11:46 a.m. UTC | #3
> Hi again,
> 
> I also realized right after send the reply that this is marked as 2/3 but 
> the other two patches didn't make it into lore archives (nor into 
> patchwork, I think).
> 
> -- 
>  i.
Hello

My bad, I sent three patches but they were all to completely different drivers/subsystems with completely different warning fixes.
I am still coming back to start sending patches after years maybe. I will from now on do patch series for one particular driver only then go to next. 

Thanks for replying.
Jules
Hans de Goede Nov. 20, 2023, 12:03 p.m. UTC | #4
Hi,

On 11/4/23 00:54, Jules Irenge wrote:
> This commit fixes coccinelle warning in macro function
> IS_VRING_DROP() which complains conversion to bool not needed here.
> 
> Signed-off-by: Jules Irenge <jbi.octave@gmail.com>

Thank you for your patch, I've applied this patch to my review-hans 
branch:
https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=review-hans

Note it will show up in my review-hans branch once I've pushed my
local branch there, which might take a while.

Once I've run some tests on this branch the patches there will be
added to the platform-drivers-x86/for-next branch and eventually
will be included in the pdx86 pull-request to Linus for the next
merge-window.

Regards,

Hans


> ---
>  drivers/platform/mellanox/mlxbf-tmfifo.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/platform/mellanox/mlxbf-tmfifo.c b/drivers/platform/mellanox/mlxbf-tmfifo.c
> index ab7d7a1235b8..88472c024680 100644
> --- a/drivers/platform/mellanox/mlxbf-tmfifo.c
> +++ b/drivers/platform/mellanox/mlxbf-tmfifo.c
> @@ -91,7 +91,7 @@ struct mlxbf_tmfifo_vring {
>  /* Check whether vring is in drop mode. */
>  #define IS_VRING_DROP(_r) ({ \
>  	typeof(_r) (r) = (_r); \
> -	(r->desc_head == &r->drop_desc ? true : false); })
> +	r->desc_head == &r->drop_desc; })
>  
>  /* A stub length to drop maximum length packet. */
>  #define VRING_DROP_DESC_MAX_LEN		GENMASK(15, 0)
diff mbox series

Patch

diff --git a/drivers/platform/mellanox/mlxbf-tmfifo.c b/drivers/platform/mellanox/mlxbf-tmfifo.c
index ab7d7a1235b8..88472c024680 100644
--- a/drivers/platform/mellanox/mlxbf-tmfifo.c
+++ b/drivers/platform/mellanox/mlxbf-tmfifo.c
@@ -91,7 +91,7 @@  struct mlxbf_tmfifo_vring {
 /* Check whether vring is in drop mode. */
 #define IS_VRING_DROP(_r) ({ \
 	typeof(_r) (r) = (_r); \
-	(r->desc_head == &r->drop_desc ? true : false); })
+	r->desc_head == &r->drop_desc; })
 
 /* A stub length to drop maximum length packet. */
 #define VRING_DROP_DESC_MAX_LEN		GENMASK(15, 0)