Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1251067

[RFC PATCH] phy: keystone: ks2_gbe_serdes_firmwares[] can be static

From kbuild test robot <lkp@intel.com>
Newsgroups linux.kernel
Subject [RFC PATCH] phy: keystone: ks2_gbe_serdes_firmwares[] can be static
Date 2015-10-19 23:00 +0200
Message-ID <qlpHc-7uj-9@gated-at.bofh.it> (permalink)
References <qlpHc-7uj-11@gated-at.bofh.it> <qlnP5-4FP-33@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---
 phy-keystone-serdes.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/phy/phy-keystone-serdes.c b/drivers/phy/phy-keystone-serdes.c
index ee1cda7..e34201c 100644
--- a/drivers/phy/phy-keystone-serdes.c
+++ b/drivers/phy/phy-keystone-serdes.c
@@ -209,9 +209,9 @@
  * Newest first. Search starts from the 0-th array entry until a firmware
  * file is found.
  */
-const char *ks2_gbe_serdes_firmwares[] = {"ks2_gbe_serdes.bin"};
-const char *ks2_xgbe_serdes_firmwares[] = {"ks2_xgbe_serdes.bin"};
-const char *ks2_pcie_serdes_firmwares[] = {"ks2_pcie_serdes.bin"};
+static const char *ks2_gbe_serdes_firmwares[] = {"ks2_gbe_serdes.bin"};
+static const char *ks2_xgbe_serdes_firmwares[] = {"ks2_xgbe_serdes.bin"};
+static const char *ks2_pcie_serdes_firmwares[] = {"ks2_pcie_serdes.bin"};
 
 /* SERDES Link Rate Kbps */
 enum KSERDES_LINK_RATE {
@@ -933,7 +933,7 @@ done:
 	return val;
 }
 
-int kserdes_get_status(struct kserdes_config *sc)
+static int kserdes_get_status(struct kserdes_config *sc)
 {
 	unsigned long timeout;
 
@@ -1568,7 +1568,7 @@ static void kserdes_att_boost_phy_patch(struct kserdes_config *sc)
 		for_each_lane(kserdes_att_boost_phyb_patch, sc);
 }
 
-int kserdes_sgmii_lanes_enable(struct kserdes_config *sc)
+static int kserdes_sgmii_lanes_enable(struct kserdes_config *sc)
 {
 	int ret, i;
 	u32 val, lanes_enable = 0;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[RFC PATCH] phy: keystone: ks2_gbe_serdes_firmwares[] can be static kbuild test robot <lkp@intel.com> - 2015-10-19 23:00 +0200

csiph-web