Commit 3b3397e2 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller

net: phy: meson-gxl: make function meson_gxl_read_status static

The function meson_gxl_read_status is local to the source and does
not need to be in global scope, so make it static.

Cleans up sparse warning:
symbol 'meson_gxl_read_status' was not declared. Should it be static?
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarJerome Brunet <jbrunet@baylibre.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 94a5ef1b
...@@ -67,7 +67,7 @@ static int meson_gxl_config_init(struct phy_device *phydev) ...@@ -67,7 +67,7 @@ static int meson_gxl_config_init(struct phy_device *phydev)
* When this failure happens, the first retry is usually successful but, * When this failure happens, the first retry is usually successful but,
* in some cases, it may take up to 6 retries to get a decent result * in some cases, it may take up to 6 retries to get a decent result
*/ */
int meson_gxl_read_status(struct phy_device *phydev) static int meson_gxl_read_status(struct phy_device *phydev)
{ {
int ret, wol, lpa, exp; int ret, wol, lpa, exp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment