diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:31 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:13 -0500 |
commit | 68a6aa85ecbab5696fdcf970fdd7b7fe5a967146 (patch) | |
tree | a56d6a4e503c6b91cb5af1218546c15d6c1e52f5 /include/linux | |
parent | 1045315df0f1bed617f0ee01379a10f543cec501 (diff) |
common: Move mii_init() function out of common.h
This function belongs in mii.h so move it over.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mii.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mii.h b/include/linux/mii.h index 21db032340..49e29ac314 100644 --- a/include/linux/mii.h +++ b/include/linux/mii.h @@ -225,4 +225,6 @@ static inline u8 mii_resolve_flowctrl_fdx(u16 lcladv, u16 rmtadv) return cap; } +void mii_init(void); + #endif /* __LINUX_MII_H__ */ |