Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1251067 > unrolled thread
| Started by | kbuild test robot <lkp@intel.com> |
|---|---|
| First post | 2015-10-19 23:00 +0200 |
| Last post | 2015-10-19 23:00 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[RFC PATCH] phy: keystone: ks2_gbe_serdes_firmwares[] can be static kbuild test robot <lkp@intel.com> - 2015-10-19 23:00 +0200
| From | kbuild test robot <lkp@intel.com> |
|---|---|
| Date | 2015-10-19 23:00 +0200 |
| Subject | [RFC PATCH] phy: keystone: ks2_gbe_serdes_firmwares[] can be static |
| Message-ID | <qlpHc-7uj-9@gated-at.bofh.it> |
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 top | Article view | linux.kernel
csiph-web