scsi: ufs: core: Remove redundant parenthesis
Remove unnecessary parenthesis in ufshcd_is_wb_flags() and ufshcd_is_wbattrs(). Link: https://lore.kernel.org/r/1891546521.01620896402035.JavaMail.epsvc@epcpadp3 Signed-off-by: Keoseong Park <keosung.park@samsung.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
4c6cb9ed63
commit
7f2b3c8bcb
|
@ -960,8 +960,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) \
|
||||
|
@ -1029,8 +1029,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) \
|
||||
|
|
Loading…
Reference in New Issue