net: atlantic: remove hw_atl_b0_hw_rss_set call from A2 code
authorMark Starovoytov <mstarovoitov@marvell.com>
Sat, 9 May 2020 06:46:58 +0000 (09:46 +0300)
committerJakub Kicinski <kuba@kernel.org>
Sat, 9 May 2020 18:47:25 +0000 (11:47 -0700)
No need to call hw_atl_b0_hw_rss_set from hw_atl2_hw_rss_set

Signed-off-by: Mark Starovoytov <mstarovoitov@marvell.com>
Signed-off-by: Igor Russkikh <irusskikh@marvell.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c
drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.h
drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c

index 1d87254..fa3cd7e 100644 (file)
@@ -216,8 +216,8 @@ err_exit:
        return err;
 }
 
-int hw_atl_b0_hw_rss_set(struct aq_hw_s *self,
-                        struct aq_rss_parameters *rss_params)
+static int hw_atl_b0_hw_rss_set(struct aq_hw_s *self,
+                               struct aq_rss_parameters *rss_params)
 {
        u32 num_rss_queues = max(1U, self->aq_nic_cfg->num_rss_queues);
        u8 *indirection_table = rss_params->indirection_table;
index f5091d7..b855459 100644 (file)
@@ -1,7 +1,8 @@
 /* SPDX-License-Identifier: GPL-2.0-only */
-/*
- * aQuantia Corporation Network Driver
- * Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved
+/* Atlantic Network Driver
+ *
+ * Copyright (C) 2014-2019 aQuantia Corporation
+ * Copyright (C) 2019-2020 Marvell International Ltd.
  */
 
 /* File hw_atl_b0.h: Declaration of abstract interface for Atlantic hardware
@@ -35,8 +36,6 @@ extern const struct aq_hw_ops hw_atl_ops_b0;
 
 int hw_atl_b0_hw_rss_hash_set(struct aq_hw_s *self,
                              struct aq_rss_parameters *rss_params);
-int hw_atl_b0_hw_rss_set(struct aq_hw_s *self,
-                        struct aq_rss_parameters *rss_params);
 int hw_atl_b0_hw_offload_set(struct aq_hw_s *self,
                             struct aq_nic_cfg_s *aq_nic_cfg);
 
index 84d9b82..6f2b33a 100644 (file)
@@ -172,7 +172,7 @@ static int hw_atl2_hw_rss_set(struct aq_hw_s *self,
        for (i = HW_ATL2_RSS_REDIRECTION_MAX; i--;)
                hw_atl2_new_rpf_rss_redir_set(self, 0, i, indirection_table[i]);
 
-       return hw_atl_b0_hw_rss_set(self, rss_params);
+       return aq_hw_err_from_flags(self);
 }
 
 static int hw_atl2_hw_init_tx_path(struct aq_hw_s *self)