mirror of https://gitee.com/openkylin/linux.git
brcm80211: fmac: move idle macros to dhd_sdio.c
The idle macros are only used by dhd_sdio.c. It's more appropriate to place them in dhd_sdio.c instead of dhd.h. Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Reviewed-by: Arend van Spriel <arend@broadcom.com> Reviewed-by: Alwin Beukers <alwin@broadcom.com> Signed-off-by: Franky Lin <frankyl@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
8763349b7d
commit
382a9e0f31
|
@ -667,10 +667,4 @@ extern void brcmf_c_pktfilter_offload_enable(struct brcmf_pub *drvr, char *arg,
|
|||
#define BRCMF_DCMD_MEDLEN 1536 /* "med" cmd buffer required */
|
||||
#define BRCMF_DCMD_MAXLEN 8192 /* max length cmd buffer required */
|
||||
|
||||
/* Enter idle immediately (no timeout) */
|
||||
#define BRCMF_IDLE_IMMEDIATE (-1)
|
||||
#define BRCMF_IDLE_ACTIVE 0 /* Do not request any SD clock change
|
||||
when idle */
|
||||
#define BRCMF_IDLE_INTERVAL 1
|
||||
|
||||
#endif /* _BRCMF_H_ */
|
||||
|
|
|
@ -314,6 +314,12 @@ struct rte_console {
|
|||
MODULE_FIRMWARE(BRCMFMAC_FW_NAME);
|
||||
MODULE_FIRMWARE(BRCMFMAC_NV_NAME);
|
||||
|
||||
#define BRCMF_IDLE_IMMEDIATE (-1) /* Enter idle immediately */
|
||||
#define BRCMF_IDLE_ACTIVE 0 /* Do not request any SD clock change
|
||||
* when idle
|
||||
*/
|
||||
#define BRCMF_IDLE_INTERVAL 1
|
||||
|
||||
/*
|
||||
* Conversion of 802.1D priority to precedence level
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue