We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicated enum
/* Interrupt control channel mask */
is the same as
/* #define WCN36XX_DXE_INT_CH2_MASK 0x00000004 */
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Duplicated enum
/* Interrupt control channel mask */
define WCN36XX_INT_MASK_CHAN_TX_L 0x00000001
define WCN36XX_INT_MASK_CHAN_RX_L 0x00000002
define WCN36XX_INT_MASK_CHAN_RX_H 0x00000008
define WCN36XX_INT_MASK_CHAN_TX_H 0x00000010
is the same as
define WCN36XX_DXE_INT_CH4_MASK 0x00000010
define WCN36XX_DXE_INT_CH3_MASK 0x00000008
/* #define WCN36XX_DXE_INT_CH2_MASK 0x00000004 */
define WCN36XX_DXE_INT_CH1_MASK 0x00000002
define WCN36XX_DXE_INT_CH0_MASK 0x00000001
The text was updated successfully, but these errors were encountered: