public inbox for linux-staging@lists.linux.dev
 help / color / mirror / Atom feed
* [PATCH] staging: fbtft: fb_ili9320: Fix 'Unnecessary parentheses around' issue
@ 2024-08-30  8:54 Qianqiang Liu
  2024-08-30  9:52 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Qianqiang Liu @ 2024-08-30  8:54 UTC (permalink / raw)
  To: gregkh; +Cc: linux-staging, Qianqiang Liu

There is no need to add parentheses around 'devcode != 0x0000' and
'devcode != 0x9320'

Signed-off-by: Qianqiang Liu <qianqiang.liu@163.com>
---
 drivers/staging/fbtft/fb_ili9320.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/fbtft/fb_ili9320.c b/drivers/staging/fbtft/fb_ili9320.c
index 0be7c2d51548..409b54cc562e 100644
--- a/drivers/staging/fbtft/fb_ili9320.c
+++ b/drivers/staging/fbtft/fb_ili9320.c
@@ -37,7 +37,7 @@ static int init_display(struct fbtft_par *par)
 	devcode = read_devicecode(par);
 	fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "Device code: 0x%04X\n",
 		      devcode);
-	if ((devcode != 0x0000) && (devcode != 0x9320))
+	if (devcode != 0x0000 && devcode != 0x9320)
 		dev_warn(par->info->device,
 			 "Unrecognized Device code: 0x%04X (expected 0x9320)\n",
 			devcode);
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-08-30  9:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-30  8:54 [PATCH] staging: fbtft: fb_ili9320: Fix 'Unnecessary parentheses around' issue Qianqiang Liu
2024-08-30  9:52 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox