net: hns3: remove explicit conversion to bool
authorGuojia Liao <liaoguojia@huawei.com>
Thu, 5 Sep 2019 13:31:40 +0000 (21:31 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 6 Sep 2019 13:20:34 +0000 (15:20 +0200)
Relational and logical operators evaluate to bool,
explicit conversion is overly verbose and unnecessary.

Signed-off-by: Guojia Liao <liaoguojia@huawei.com>
Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c

index 76e1c84..dde752f 100644 (file)
@@ -6174,7 +6174,7 @@ static void hclge_enable_fd(struct hnae3_handle *handle, bool enable)
        bool clear;
 
        hdev->fd_en = enable;
-       clear = hdev->fd_active_type == HCLGE_FD_ARFS_ACTIVE ? true : false;
+       clear = hdev->fd_active_type == HCLGE_FD_ARFS_ACTIVE;
        if (!enable)
                hclge_del_all_fd_entries(handle, clear);
        else