mirror of
https://github.com/torvalds/linux.git
synced 2026-05-21 13:27:57 +02:00
Revert "net: hns3: add void before function which don't receive ret"
This reverts commit 5ac4f180bd.
Sorry for taking no notice that the function devlink_register() has been
already declared as void, so it is needs to revert this patch.
Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com>
Link: https://lore.kernel.org/r/20211204012448.51360-1-huangguangbin2@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
01081be1ea
commit
364d470d54
|
|
@ -120,7 +120,7 @@ int hclge_devlink_init(struct hclge_dev *hdev)
|
|||
hdev->devlink = devlink;
|
||||
|
||||
devlink_set_features(devlink, DEVLINK_F_RELOAD);
|
||||
(void)devlink_register(devlink);
|
||||
devlink_register(devlink);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ int hclgevf_devlink_init(struct hclgevf_dev *hdev)
|
|||
hdev->devlink = devlink;
|
||||
|
||||
devlink_set_features(devlink, DEVLINK_F_RELOAD);
|
||||
(void)devlink_register(devlink);
|
||||
devlink_register(devlink);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user