diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2022-09-13 21:06:37 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-09-20 16:54:13 +0200 |
commit | 275416754e9a262c97a1ad6f806a4bc6e0464aa2 (patch) | |
tree | 0cb601adbc09491de7097d5ba61f81c17dbff0f6 /drivers/net/phy/sfp.h | |
parent | net: sfp: move quirk handling into sfp.c (diff) | |
download | linux-275416754e9a262c97a1ad6f806a4bc6e0464aa2.tar.xz linux-275416754e9a262c97a1ad6f806a4bc6e0464aa2.zip |
net: sfp: move Alcatel Lucent 3FE46541AA fixup
Add a new fixup mechanism to the SFP quirks, and use it for this
module.
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/phy/sfp.h')
-rw-r--r-- | drivers/net/phy/sfp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/phy/sfp.h b/drivers/net/phy/sfp.h index 03f1d47fe6ca..7ad06deae76c 100644 --- a/drivers/net/phy/sfp.h +++ b/drivers/net/phy/sfp.h @@ -10,6 +10,7 @@ struct sfp_quirk { const char *vendor; const char *part; void (*modes)(const struct sfp_eeprom_id *id, unsigned long *modes); + void (*fixup)(struct sfp *sfp); }; struct sfp_socket_ops { |