drivers/staging/rtl8723bs/os_dep/sdio_intf.c
Source file repositories/reference/linux-study-clean/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/staging/rtl8723bs/os_dep/sdio_intf.c- Extension
.c- Size
- 9637 bytes
- Lines
- 466
- Domain
- Driver Families
- Bucket
- drivers/staging
- Inferred role
- Driver Families: exported/initcall integration point
- Status
- integration 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.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
drv_types.hhal_btcoex.hlinux/jiffies.h
Detected Declarations
function sd_sync_int_hdlfunction sdio_alloc_irqfunction sdio_free_irqfunction sdio_initfunction sdio_deinitfunction sdio_dvobj_deinitfunction rtw_set_hal_opsfunction sd_intf_startfunction sd_intf_stopfunction rtw_sdio_if1_deinitfunction drv_initfunction rtw_dev_removefunction rtw_sdio_suspendfunction rtw_resume_processfunction rtw_sdio_resumefunction rtw_drv_entryfunction rtw_drv_haltmodule init rtw_drv_entry
Annotated Snippet
module_init(rtw_drv_entry);
static void __exit rtw_drv_halt(void)
{
sdio_unregister_driver(&rtl8723bs_sdio_driver);
}
module_exit(rtw_drv_halt);
MODULE_DESCRIPTION("Realtek RTL8723BS SDIO WiFi driver");
Annotation
- Immediate include surface: `drv_types.h`, `hal_btcoex.h`, `linux/jiffies.h`.
- Detected declarations: `function sd_sync_int_hdl`, `function sdio_alloc_irq`, `function sdio_free_irq`, `function sdio_init`, `function sdio_deinit`, `function sdio_dvobj_deinit`, `function rtw_set_hal_ops`, `function sd_intf_start`, `function sd_intf_stop`, `function rtw_sdio_if1_deinit`.
- Atlas domain: Driver Families / drivers/staging.
- Implementation status: integration 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.