aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy/micrel.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-08-06 17:29:35 +0900
committerDavid S. Miller <davem@davemloft.net>2013-08-07 16:59:10 -0700
commit32d73b144eacce83871199251081763c26659c0f (patch)
treec16f5c5910d07e98b12f62e97b6f1e12ff3fabde /drivers/net/phy/micrel.c
parentnet: use skb_copy_datagram_from_iovec() in zerocopy_sg_from_iovec() (diff)
downloadlinux-dev-32d73b144eacce83871199251081763c26659c0f.tar.xz
linux-dev-32d73b144eacce83871199251081763c26659c0f.zip
net: phy: micrel: Staticize ksz8873mll_read_status()
ksz8873mll_read_status() is used only in this file. Fix the following sparse warning: drivers/net/phy/micrel.c:147:5: warning: symbol 'ksz8873mll_read_status' was not declared. Should it be static? Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/net/phy/micrel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
index 2510435f34ed..9ca494550186 100644
--- a/drivers/net/phy/micrel.c
+++ b/drivers/net/phy/micrel.c
@@ -144,7 +144,7 @@ static int ks8051_config_init(struct phy_device *phydev)
#define KSZ8873MLL_GLOBAL_CONTROL_4 0x06
#define KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX (1 << 6)
#define KSZ8873MLL_GLOBAL_CONTROL_4_SPEED (1 << 4)
-int ksz8873mll_read_status(struct phy_device *phydev)
+static int ksz8873mll_read_status(struct phy_device *phydev)
{
int regval;