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

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

staging: brcm80211: remove include file sbhndpio.h



All source files including sbhndpio.h were needing it only
because they needed d11.h and it had a dependency. The content
of sbhndpio.h has been merged in d11.h.

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 70dfb584
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
@@ -59,6 +59,37 @@ typedef volatile struct {
	u32 intmask;
} intctrlregs_t;

/* PIO structure,
 *  support two PIO format: 2 bytes access and 4 bytes access
 *  basic FIFO register set is per channel(transmit or receive)
 *  a pair of channels is defined for convenience
 */
/* 2byte-wide pio register set per channel(xmt or rcv) */
typedef volatile struct {
	u16 fifocontrol;
	u16 fifodata;
	u16 fifofree;	/* only valid in xmt channel, not in rcv channel */
	u16 PAD;
} pio2regs_t;

/* a pair of pio channels(tx and rx) */
typedef volatile struct {
	pio2regs_t tx;
	pio2regs_t rx;
} pio2regp_t;

/* 4byte-wide pio register set per channel(xmt or rcv) */
typedef volatile struct {
	u32 fifocontrol;
	u32 fifodata;
} pio4regs_t;

/* a pair of pio channels(tx and rx) */
typedef volatile struct {
	pio4regs_t tx;
	pio4regs_t rx;
} pio4regp_t;

/* read: 32-bit register that can be read as 32-bit or as 2 16-bit
 * write: only low 16b-it half can be written
 */
+0 −1
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@
#include <bcmnvram.h>
#include <sbchipc.h>
#include <bcmdevs.h>
#include <sbhndpio.h>
#include <sbhnddma.h>

#include <wlc_phy_int.h>
+0 −1
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@
#include <hndpmu.h>

#include <bcmdevs.h>
#include <sbhndpio.h>
#include <sbhnddma.h>

#include <wlc_phy_radio.h>
+0 −1
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@
#include <hndpmu.h>
#include <bcmdevs.h>
#include <sbhndpio.h>
#include <sbhnddma.h>
#include <wlc_phy_radio.h>
+0 −1
Original line number Diff line number Diff line
@@ -15,7 +15,6 @@
 */

#include <linux/types.h>
#include <sbhndpio.h>
#include <sbhnddma.h>
#include <osl.h>
#include <wlc_phy_int.h>
Loading