[PATCH] staging: sm750fb: remove unnecessary parentheses
From: Omer PALA
Date: Wed Sep 16 2026 - 05:07:44 EST
Remove unnecessary parentheses around equality checks in sm750_accel.c
and ddk750_swi2c.c to clear checkpatch.pl checks and improve code
readability.
Signed-off-by: Omer PALA <palaomer100@xxxxxxxxx>
---
drivers/staging/sm750fb/ddk750_swi2c.c | 2 +-
drivers/staging/sm750fb/sm750_accel.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/sm750fb/ddk750_swi2c.c b/drivers/staging/sm750fb/ddk750_swi2c.c
index e63f3b00e..24ad58207 100644
--- a/drivers/staging/sm750fb/ddk750_swi2c.c
+++ b/drivers/staging/sm750fb/ddk750_swi2c.c
@@ -393,7 +393,7 @@ long sm750_sw_i2c_init(unsigned char clk_gpio, unsigned char data_gpio)
* Return 0 if the GPIO pins to be used is out of range. The
* range is only from [0..63]
*/
- if ((clk_gpio > 31) || (data_gpio > 31))
+ if (clk_gpio > 31 || data_gpio > 31)
return -1;
if (sm750_get_chip_type() == SM750LE)
diff --git a/drivers/staging/sm750fb/sm750_accel.c b/drivers/staging/sm750fb/sm750_accel.c
index bac9a2098..21aed73d8 100644
--- a/drivers/staging/sm750fb/sm750_accel.c
+++ b/drivers/staging/sm750fb/sm750_accel.c
@@ -202,7 +202,7 @@ int sm750_hw_copyarea(struct lynx_accel *accel,
}
}
- if ((direction == BOTTOM_TO_TOP) || (direction == RIGHT_TO_LEFT)) {
+ if (direction == BOTTOM_TO_TOP || direction == RIGHT_TO_LEFT) {
sx += width - 1;
sy += height - 1;
dx += width - 1;
--
2.55.0