diff mbox series

scsi: ufs: sysfs: remove redundant parenthesis

Message ID 1891546521.01620896402035.JavaMail.epsvc@epcpadp3
State New
Headers show
Series scsi: ufs: sysfs: remove redundant parenthesis | expand

Commit Message

Keoseong Park May 13, 2021, 8:53 a.m. UTC
This patch removes unnecessary parenthesis in ufshcd_is_wb_flags/attrs()

Signed-off-by: Keoseong Park <keosung.park@samsung.com>
---
 drivers/scsi/ufs/ufs-sysfs.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Martin K. Petersen May 22, 2021, 4:41 a.m. UTC | #1
On Thu, 13 May 2021 17:53:20 +0900, Keoseong Park wrote:

> This patch removes unnecessary parenthesis in ufshcd_is_wb_flags/attrs()


Applied to 5.14/scsi-queue, thanks!

[1/1] scsi: ufs: sysfs: remove redundant parenthesis
      https://git.kernel.org/mkp/scsi/c/7f2b3c8bcb7f

-- 
Martin K. Petersen	Oracle Linux Engineering
diff mbox series

Patch

diff --git a/drivers/scsi/ufs/ufs-sysfs.c b/drivers/scsi/ufs/ufs-sysfs.c
index d337839c19dc..4807d218b16c 100644
--- a/drivers/scsi/ufs/ufs-sysfs.c
+++ b/drivers/scsi/ufs/ufs-sysfs.c
@@ -724,8 +724,8 @@  static const struct attribute_group ufs_sysfs_string_descriptors_group = {
 
 static inline bool ufshcd_is_wb_flags(enum flag_idn idn)
 {
-	return ((idn >= QUERY_FLAG_IDN_WB_EN) &&
-		(idn <= QUERY_FLAG_IDN_WB_BUFF_FLUSH_DURING_HIBERN8));
+	return idn >= QUERY_FLAG_IDN_WB_EN &&
+		idn <= QUERY_FLAG_IDN_WB_BUFF_FLUSH_DURING_HIBERN8;
 }
 
 #define UFS_FLAG(_name, _uname)						\
@@ -793,8 +793,8 @@  static const struct attribute_group ufs_sysfs_flags_group = {
 
 static inline bool ufshcd_is_wb_attrs(enum attr_idn idn)
 {
-	return ((idn >= QUERY_ATTR_IDN_WB_FLUSH_STATUS) &&
-		(idn <= QUERY_ATTR_IDN_CURR_WB_BUFF_SIZE));
+	return idn >= QUERY_ATTR_IDN_WB_FLUSH_STATUS &&
+		idn <= QUERY_ATTR_IDN_CURR_WB_BUFF_SIZE;
 }
 
 #define UFS_ATTRIBUTE(_name, _uname)					\