aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/hisilicon/hns3/hnae3.c
diff options
context:
space:
mode:
authorFuyun Liang <liangfuyun1@huawei.com>2018-05-15 19:20:10 +0100
committerDavid S. Miller <davem@davemloft.net>2018-05-16 11:33:08 -0400
commit0c698257c7befa8d1ec1b8d767758c3d73a2686a (patch)
tree7a017fe38994662d7fe40bd347d6dc8fef920c9d /drivers/net/ethernet/hisilicon/hns3/hnae3.c
parentnet: hns3: Change return type of hnae3_register_ae_algo (diff)
downloadlinux-dev-0c698257c7befa8d1ec1b8d767758c3d73a2686a.tar.xz
linux-dev-0c698257c7befa8d1ec1b8d767758c3d73a2686a.zip
net: hns3: Change return value in hnae3_register_client
A client includes many client instance. Just like ae_algo, Initializing client instance failed does not represent registering client failed. The action of registering client just is adding client to the client list and the result always is true. This patch changes the return value of hnae3_register_client form a variable value to a fixed value, makes the function always return ok. Signed-off-by: Fuyun Liang <liangfuyun1@huawei.com> Signed-off-by: Peng Li <lipeng321@huawei.com> Signed-off-by: Salil Mehta <salil.mehta@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/net/ethernet/hisilicon/hns3/hnae3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/hisilicon/hns3/hnae3.c b/drivers/net/ethernet/hisilicon/hns3/hnae3.c
index 3b1c3966b7d4..bd3c232234d7 100644
--- a/drivers/net/ethernet/hisilicon/hns3/hnae3.c
+++ b/drivers/net/ethernet/hisilicon/hns3/hnae3.c
@@ -98,7 +98,7 @@ int hnae3_register_client(struct hnae3_client *client)
exit:
mutex_unlock(&hnae3_common_lock);
- return ret;
+ return 0;
}
EXPORT_SYMBOL(hnae3_register_client);