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

Commit 9771f740 authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville
Browse files

[PATCH] mac80211: kill antenna select ioctls



Not used anywhere.

Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJiri Benc <jbenc@suse.cz>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 3ef8bed4
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -26,8 +26,6 @@
 * mess shall be deleted completely. */
enum {
	PRISM2_PARAM_IEEE_802_1X = 23,
	PRISM2_PARAM_ANTSEL_TX = 24,
	PRISM2_PARAM_ANTSEL_RX = 25,

	/* Instant802 additions */
	PRISM2_PARAM_CTS_PROTECT_ERP_FRAMES = 1001,
+0 −20
Original line number Diff line number Diff line
@@ -1197,18 +1197,6 @@ static int ieee80211_ioctl_prism2_param(struct net_device *dev,
			sdata->ieee802_1x = value;
		break;

	case PRISM2_PARAM_ANTSEL_TX:
		local->hw.conf.antenna_sel_tx = value;
		if (ieee80211_hw_config(local))
			ret = -EINVAL;
		break;

	case PRISM2_PARAM_ANTSEL_RX:
		local->hw.conf.antenna_sel_rx = value;
		if (ieee80211_hw_config(local))
			ret = -EINVAL;
		break;

	case PRISM2_PARAM_CTS_PROTECT_ERP_FRAMES:
		local->cts_protect_erp_frames = value;
		break;
@@ -1340,14 +1328,6 @@ static int ieee80211_ioctl_get_prism2_param(struct net_device *dev,
		*param = sdata->ieee802_1x;
		break;

	case PRISM2_PARAM_ANTSEL_TX:
		*param = local->hw.conf.antenna_sel_tx;
		break;

	case PRISM2_PARAM_ANTSEL_RX:
		*param = local->hw.conf.antenna_sel_rx;
		break;

	case PRISM2_PARAM_CTS_PROTECT_ERP_FRAMES:
		*param = local->cts_protect_erp_frames;
		break;