net: hns3: refine some macro definitions
Macro arguments should be enclosed in parentheses, in case of expression argument, but parentheses of pure number in macro definition should be removed for simplicity. Signed-off-by: Guojia Liao <liaoguojia@huawei.com> Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com> Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
427a7bff66
commit
eddd98600b
|
@ -58,10 +58,10 @@
|
||||||
BIT(HNAE3_DEV_SUPPORT_ROCE_B))
|
BIT(HNAE3_DEV_SUPPORT_ROCE_B))
|
||||||
|
|
||||||
#define hnae3_dev_roce_supported(hdev) \
|
#define hnae3_dev_roce_supported(hdev) \
|
||||||
hnae3_get_bit(hdev->ae_dev->flag, HNAE3_DEV_SUPPORT_ROCE_B)
|
hnae3_get_bit((hdev)->ae_dev->flag, HNAE3_DEV_SUPPORT_ROCE_B)
|
||||||
|
|
||||||
#define hnae3_dev_dcb_supported(hdev) \
|
#define hnae3_dev_dcb_supported(hdev) \
|
||||||
hnae3_get_bit(hdev->ae_dev->flag, HNAE3_DEV_SUPPORT_DCB_B)
|
hnae3_get_bit((hdev)->ae_dev->flag, HNAE3_DEV_SUPPORT_DCB_B)
|
||||||
|
|
||||||
#define hnae3_dev_fd_supported(hdev) \
|
#define hnae3_dev_fd_supported(hdev) \
|
||||||
hnae3_get_bit((hdev)->ae_dev->flag, HNAE3_DEV_SUPPORT_FD_B)
|
hnae3_get_bit((hdev)->ae_dev->flag, HNAE3_DEV_SUPPORT_FD_B)
|
||||||
|
|
|
@ -125,7 +125,7 @@
|
||||||
#define HCLGEVF_S_IP_BIT BIT(3)
|
#define HCLGEVF_S_IP_BIT BIT(3)
|
||||||
#define HCLGEVF_V_TAG_BIT BIT(4)
|
#define HCLGEVF_V_TAG_BIT BIT(4)
|
||||||
|
|
||||||
#define HCLGEVF_STATS_TIMER_INTERVAL (36)
|
#define HCLGEVF_STATS_TIMER_INTERVAL 36U
|
||||||
|
|
||||||
enum hclgevf_evt_cause {
|
enum hclgevf_evt_cause {
|
||||||
HCLGEVF_VECTOR0_EVENT_RST,
|
HCLGEVF_VECTOR0_EVENT_RST,
|
||||||
|
|
Loading…
Reference in New Issue