2021-05-13 11:14:16

by Keoseong Park

[permalink] [raw]
Subject: [PATCH] scsi: ufs: sysfs: remove redundant parenthesis

This patch removes unnecessary parenthesis in ufshcd_is_wb_flags/attrs()

Signed-off-by: Keoseong Park <[email protected]>
---
drivers/scsi/ufs/ufs-sysfs.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

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) \
--
2.17.1


2021-05-22 04:44:02

by Martin K. Petersen

[permalink] [raw]
Subject: Re: [PATCH] scsi: ufs: sysfs: remove redundant parenthesis

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