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

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

rndis_wlan: make some symbols static



sparse complains, correctly, about these:

drivers/net/wireless/rndis_wlan.c:418:21: warning: symbol 'rndis_config_ops' was not declared. Should it be static?
drivers/net/wireless/rndis_wlan.c:423:6: warning: symbol 'rndis_wiphy_privid' was not declared. Should it be static?

Fix that.

Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 29b4a4f7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -415,12 +415,12 @@ static int rndis_change_virtual_intf(struct wiphy *wiphy, int ifindex,
static int rndis_scan(struct wiphy *wiphy, struct net_device *dev,
			struct cfg80211_scan_request *request);

struct cfg80211_ops rndis_config_ops = {
static struct cfg80211_ops rndis_config_ops = {
	.change_virtual_intf = rndis_change_virtual_intf,
	.scan = rndis_scan,
};

void *rndis_wiphy_privid = &rndis_wiphy_privid;
static void *rndis_wiphy_privid = &rndis_wiphy_privid;

static const int bcm4320_power_output[4] = { 25, 50, 75, 100 };