diff options
author | Andrew Lunn <andrew@lunn.ch> | 2018-09-25 01:50:00 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-26 20:23:31 -0700 |
commit | 3e322474485931e7ea6e4c5560089991a7f03cbc (patch) | |
tree | 6b1bf48c256946ca775c9ab0e7f6d0c77da5401d | |
parent | 77f2d753819b7d50c16abfb778caf1fe075faed0 (diff) | |
download | blackbird-obmc-linux-3e322474485931e7ea6e4c5560089991a7f03cbc.tar.gz blackbird-obmc-linux-3e322474485931e7ea6e4c5560089991a7f03cbc.zip |
net: phy: sfp: Fix unregistering of HWMON SFP device
A HWMON device is only registered is the SFP module supports the
diagnostic page and is complient to SFF8472. Don't unconditionally
unregister the hwmon device when the SFP module is remove, otherwise
we access data structures which don't exist.
Reported-by: Florian Fainelli <f.fainelli@gmail.com>
Fixes: 1323061a018a ("net: phy: sfp: Add HWMON support for module sensors")
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Tested-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/phy/sfp.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/net/phy/sfp.c b/drivers/net/phy/sfp.c index 52fffb98fde9..6e13b8832bc7 100644 --- a/drivers/net/phy/sfp.c +++ b/drivers/net/phy/sfp.c @@ -1098,8 +1098,11 @@ static int sfp_hwmon_insert(struct sfp *sfp) static void sfp_hwmon_remove(struct sfp *sfp) { - hwmon_device_unregister(sfp->hwmon_dev); - kfree(sfp->hwmon_name); + if (!IS_ERR_OR_NULL(sfp->hwmon_dev)) { + hwmon_device_unregister(sfp->hwmon_dev); + sfp->hwmon_dev = NULL; + kfree(sfp->hwmon_name); + } } #else static int sfp_hwmon_insert(struct sfp *sfp) |