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

Commit b693380f authored by Arend van Spriel's avatar Arend van Spriel Committed by Greg Kroah-Hartman
Browse files

staging: brcm80211: remove unused module from softmac driver



The softmac driver contained an event queue mechanism which
was properly initialized and queried but no event are ever
posted to it. Therefor the module has been removed.

Reviewed-by: default avatarRoland Vossen <rvossen@broadcom.com>
Reviewed-by: default avatarBrett Rudley <brudley@broadcom.com>
Signed-off-by: default avatarArend van Spriel <arend@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 371d72a1
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -36,7 +36,6 @@ BRCMSMAC_OFILES := \
	wlc_antsel.o \
	wlc_bmac.o \
	wlc_channel.o \
	wlc_event.o \
	wlc_mac80211.o \
	wlc_phy_shim.o \
	wlc_rate.o \
+0 −29
Original line number Diff line number Diff line
@@ -1590,35 +1590,6 @@ static void BCMFASTPATH wl_dpc(unsigned long data)
	WL_UNLOCK(wl);
}

static void wl_link_up(struct wl_info *wl, char *ifname)
{
	WL_NONE("wl%d: link up (%s)\n", wl->pub->unit, ifname);
}

static void wl_link_down(struct wl_info *wl, char *ifname)
{
	WL_NONE("wl%d: link down (%s)\n", wl->pub->unit, ifname);
}

/*
 * precondition: perimeter lock has been acquired
 */
void wl_event(struct wl_info *wl, char *ifname, wlc_event_t *e)
{

	switch (e->event.event_type) {
	case WLC_E_LINK:
	case WLC_E_NDIS_LINK:
		if (e->event.flags & WLC_EVENT_MSG_LINK)
			wl_link_up(wl, ifname);
		else
			wl_link_down(wl, ifname);
		break;
	case WLC_E_RADIO:
		break;
	}
}

/*
 * is called by the kernel from software irq context
 */
+0 −1
Original line number Diff line number Diff line
@@ -27,7 +27,6 @@
#include <wlc_key.h>
#include <sbhndpio.h>
#include <sbhnddma.h>
#include <wlc_event.h>
#include <wlc_mac80211.h>
#include <wlc_alloc.h>
#include <wl_dbg.h>
+0 −1
Original line number Diff line number Diff line
@@ -27,7 +27,6 @@
#include <wlc_rate.h>
#include <wlc_pub.h>
#include <wlc_key.h>
#include <wlc_event.h>
#include <wlc_mac80211.h>
#include <wlc_phy_hal.h>
#include <wlc_antsel.h>
+0 −1
Original line number Diff line number Diff line
@@ -35,7 +35,6 @@
#include <wlc_key.h>
#include <wlc_pub.h>
#include <wl_dbg.h>
#include <wlc_event.h>
#include <wlc_mac80211.h>
#include <wlc_bmac.h>
#include <wlc_phy_hal.h>
Loading