drivers/staging/rtl8723bs/include/rtl8723b_recv.h
Source file repositories/reference/linux-study-clean/drivers/staging/rtl8723bs/include/rtl8723b_recv.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/staging/rtl8723bs/include/rtl8723b_recv.h- Extension
.h- Size
- 1948 bytes
- Lines
- 96
- Domain
- Driver Families
- Bucket
- drivers/staging
- Inferred role
- Driver Families: implementation source
- Status
- source implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
rtl8192c_recv.h
Detected Declarations
struct rxreport_8723b
Annotated Snippet
struct rxreport_8723b {
/* DWORD 0 */
u32 pktlen:14;
u32 crc32:1;
u32 icverr:1;
u32 drvinfosize:4;
u32 security:3;
u32 qos:1;
u32 shift:2;
u32 physt:1;
u32 swdec:1;
u32 rsvd0028:2;
u32 eor:1;
u32 rsvd0031:1;
/* DWORD 1 */
u32 macid:7;
u32 rsvd0407:1;
u32 tid:4;
u32 macid_vld:1;
u32 amsdu:1;
u32 rxid_match:1;
u32 paggr:1;
u32 a1fit:4;
u32 chkerr:1; /* 20 */
u32 rx_ipv:1;
u32 rx_is_tcp_udp:1;
u32 chk_vld:1; /* 23 */
u32 pam:1;
u32 pwr:1;
u32 md:1;
u32 mf:1;
u32 type:2;
u32 mc:1;
u32 bc:1;
/* DWORD 2 */
u32 seq:12;
u32 frag:4;
u32 rx_is_qos:1;
u32 rsvd0817:1;
u32 wlanhd_iv_len:6;
u32 hwrsvd0824:4;
u32 c2h_ind:1;
u32 rsvd0829:2;
u32 fcs_ok:1;
/* DWORD 3 */
u32 rx_rate:7;
u32 rsvd1207:3;
u32 htc:1;
u32 esop:1;
u32 bssid_fit:2;
u32 rsvd1214:2;
u32 dma_agg_num:8;
u32 rsvd1224:5;
u32 patternmatch:1;
u32 unicastwake:1;
u32 magicwake:1;
/* DWORD 4 */
u32 splcp:1; /* Ofdm sgi or cck_splcp */
u32 ldpc:1;
u32 stbc:1;
u32 not_sounding:1;
u32 bw:2;
u32 rsvd1606:26;
/* DWORD 5 */
u32 tsfl;
};
s32 rtl8723bs_init_recv_priv(struct adapter *padapter);
void rtl8723bs_free_recv_priv(struct adapter *padapter);
void rtl8723b_query_rx_phy_status(union recv_frame *prframe, struct phy_stat *pphy_stat);
void rtl8723b_process_phy_info(struct adapter *padapter, void *prframe);
void rtl8723b_read_chip_version(struct adapter *padapter);
void rtl8723bs_init_default_value(struct adapter *padapter);
void rtl8723bs_interface_configure(struct adapter *padapter);
void ReadAdapterInfo8723BS(struct adapter *padapter);
#endif
Annotation
- Immediate include surface: `rtl8192c_recv.h`.
- Detected declarations: `struct rxreport_8723b`.
- Atlas domain: Driver Families / drivers/staging.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.