Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 95acbd43 authored by Pavel Roskin's avatar Pavel Roskin Committed by John W. Linville
Browse files

ath5k: fix incorrect use of drvdata in sysfs code



Signed-off-by: default avatarPavel Roskin <proski@gnu.org>
Cc: <stable@kernel.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent f2529c2c
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -10,7 +10,8 @@ static ssize_t ath5k_attr_show_##name(struct device *dev, \
			struct device_attribute *attr,			\
			char *buf)					\
{									\
	struct ath5k_softc *sc = dev_get_drvdata(dev);			\
	struct ieee80211_hw *hw = dev_get_drvdata(dev);			\
	struct ath5k_softc *sc = hw->priv;				\
	return snprintf(buf, PAGE_SIZE, "%d\n", get); 			\
}									\
									\
@@ -18,7 +19,8 @@ static ssize_t ath5k_attr_store_##name(struct device *dev, \
			struct device_attribute *attr,			\
			const char *buf, size_t count)			\
{									\
	struct ath5k_softc *sc = dev_get_drvdata(dev);			\
	struct ieee80211_hw *hw = dev_get_drvdata(dev);			\
	struct ath5k_softc *sc = hw->priv;				\
	int val;							\
									\
	val = (int)simple_strtoul(buf, NULL, 10);			\
@@ -33,7 +35,8 @@ static ssize_t ath5k_attr_show_##name(struct device *dev, \
			struct device_attribute *attr,			\
			char *buf)					\
{									\
	struct ath5k_softc *sc = dev_get_drvdata(dev);			\
	struct ieee80211_hw *hw = dev_get_drvdata(dev);			\
	struct ath5k_softc *sc = hw->priv;				\
	return snprintf(buf, PAGE_SIZE, "%d\n", get); 			\
}									\
static DEVICE_ATTR(name, S_IRUGO, ath5k_attr_show_##name, NULL)