diff mbox series

[v1,1/1] spi: Remove unneeded parentheses in spi_map_buf()

Message ID 20210619111526.27776-1-andriy.shevchenko@linux.intel.com
State New
Headers show
Series [v1,1/1] spi: Remove unneeded parentheses in spi_map_buf() | expand

Commit Message

Andy Shevchenko June 19, 2021, 11:15 a.m. UTC
The boolean expression to get kmap_buf is hard to read due to
too many unneeded parentheses. Remove them for good.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/spi/spi.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Comments

Mark Brown June 21, 2021, 10:39 a.m. UTC | #1
On Sat, Jun 19, 2021 at 02:15:26PM +0300, Andy Shevchenko wrote:
> The boolean expression to get kmap_buf is hard to read due to

> too many unneeded parentheses. Remove them for good.


> -	const bool kmap_buf = ((unsigned long)buf >= PKMAP_BASE &&

> -				(unsigned long)buf < (PKMAP_BASE +

> -					(LAST_PKMAP * PAGE_SIZE)));

> +	const bool kmap_buf = (unsigned long)buf >= PKMAP_BASE &&

> +			      (unsigned long)buf < (PKMAP_BASE + LAST_PKMAP * PAGE_SIZE);


No, I think this makes things worse - to the extent there's an issue
here it's not excessive brackets.
Andy Shevchenko June 21, 2021, 10:43 a.m. UTC | #2
On Mon, Jun 21, 2021 at 1:40 PM Mark Brown <broonie@kernel.org> wrote:
>

> On Sat, Jun 19, 2021 at 02:15:26PM +0300, Andy Shevchenko wrote:

> > The boolean expression to get kmap_buf is hard to read due to

> > too many unneeded parentheses. Remove them for good.

>

> > -     const bool kmap_buf = ((unsigned long)buf >= PKMAP_BASE &&

> > -                             (unsigned long)buf < (PKMAP_BASE +

> > -                                     (LAST_PKMAP * PAGE_SIZE)));

> > +     const bool kmap_buf = (unsigned long)buf >= PKMAP_BASE &&

> > +                           (unsigned long)buf < (PKMAP_BASE + LAST_PKMAP * PAGE_SIZE);

>

> No, I think this makes things worse - to the extent there's an issue

> here it's not excessive brackets.


How? I can't see any issues here and dropping excessive brackets helps
to read it better. For example, the exterior brackets do nothing
except making it harder to read, i.e. the expression inside them is
already type of boolean and I have no clue what they are for.



-- 
With Best Regards,
Andy Shevchenko
Mark Brown June 21, 2021, 11:59 a.m. UTC | #3
On Mon, Jun 21, 2021 at 01:43:41PM +0300, Andy Shevchenko wrote:
> On Mon, Jun 21, 2021 at 1:40 PM Mark Brown <broonie@kernel.org> wrote:

> >

> > On Sat, Jun 19, 2021 at 02:15:26PM +0300, Andy Shevchenko wrote:

> > > The boolean expression to get kmap_buf is hard to read due to

> > > too many unneeded parentheses. Remove them for good.


> > > -     const bool kmap_buf = ((unsigned long)buf >= PKMAP_BASE &&

> > > -                             (unsigned long)buf < (PKMAP_BASE +

> > > -                                     (LAST_PKMAP * PAGE_SIZE)));

> > > +     const bool kmap_buf = (unsigned long)buf >= PKMAP_BASE &&

> > > +                           (unsigned long)buf < (PKMAP_BASE + LAST_PKMAP * PAGE_SIZE);


> > No, I think this makes things worse - to the extent there's an issue

> > here it's not excessive brackets.


> How? I can't see any issues here and dropping excessive brackets helps

> to read it better. For example, the exterior brackets do nothing

> except making it harder to read, i.e. the expression inside them is

> already type of boolean and I have no clue what they are for.


This is purely a taste thing.  I think the >= and && being the same
length and the second condition being visually distinct from the first
don't help here.
diff mbox series

Patch

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 16b377581d16..0e4917a55eaa 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -873,9 +873,8 @@  int spi_map_buf(struct spi_controller *ctlr, struct device *dev,
 	const bool vmalloced_buf = is_vmalloc_addr(buf);
 	unsigned int max_seg_size = dma_get_max_seg_size(dev);
 #ifdef CONFIG_HIGHMEM
-	const bool kmap_buf = ((unsigned long)buf >= PKMAP_BASE &&
-				(unsigned long)buf < (PKMAP_BASE +
-					(LAST_PKMAP * PAGE_SIZE)));
+	const bool kmap_buf = (unsigned long)buf >= PKMAP_BASE &&
+			      (unsigned long)buf < (PKMAP_BASE + LAST_PKMAP * PAGE_SIZE);
 #else
 	const bool kmap_buf = false;
 #endif