linux-stable/drivers/staging/rtl8712/rtl8712_interrupt_bitdef.h
Larry Finger 2865d42c78 staging: r8712u: Add the new driver to the mainline kernel
This code is for a completely new version of the Realtek 8192 USB devices
such as the D-Link DWA-130. The Realtek code, which was originally for
Linux, Windows XP and Windows CE, has been stripped of all code not needed
for Linux. In addition, only one additional configuration variable, which
enables AP mode, remains.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com>
Tested-by: Frederic Leroy <fredo@starox.org>
2010-08-20 10:15:30 -05:00

39 lines
981 B
C

#ifndef __RTL8712_INTERRUPT_BITDEF_H__
#define __RTL8712_INTERRUPT_BITDEF_H__
/*HIMR*/
/*HISR*/
#define _CPUERR BIT(29)
#define _ATIMEND BIT(28)
#define _TXBCNOK BIT(27)
#define _TXBCNERR BIT(26)
#define _BCNDMAINT4 BIT(25)
#define _BCNDMAINT3 BIT(24)
#define _BCNDMAINT2 BIT(23)
#define _BCNDMAINT1 BIT(22)
#define _BCNDOK4 BIT(21)
#define _BCNDOK3 BIT(20)
#define _BCNDOK2 BIT(19)
#define _BCNDOK1 BIT(18)
#define _TIMEOUT2 BIT(17)
#define _TIMEOUT1 BIT(16)
#define _TXFOVW BIT(15)
#define _PSTIMEOUT BIT(14)
#define _BCNDMAINT0 BIT(13)
#define _FOVW BIT(12)
#define _RDU BIT(11)
#define _RXCMDOK BIT(10)
#define _BCNDOK0 BIT(9)
#define _HIGHDOK BIT(8)
#define _COMDOK BIT(7)
#define _MGTDOK BIT(6)
#define _HCCADOK BIT(5)
#define _BKDOK BIT(4)
#define _BEDOK BIT(3)
#define _VIDOK BIT(2)
#define _VODOK BIT(1)
#define _RXOK BIT(0)
#endif /*__RTL8712_INTERRUPT_BITDEF_H__*/