mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-04 08:17:46 +00:00

Move the fixed_phy MII register generation to a library to allow other software phy implementations to use this code. Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
8 lines
139 B
C
8 lines
139 B
C
#ifndef SWPHY_H
|
|
#define SWPHY_H
|
|
|
|
struct fixed_phy_status;
|
|
|
|
int swphy_update_regs(u16 *regs, const struct fixed_phy_status *state);
|
|
|
|
#endif
|