drivers/net/wireless/mediatek/mt76/mt7603/main.c
Source file repositories/reference/linux-study-clean/drivers/net/wireless/mediatek/mt76/mt7603/main.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/wireless/mediatek/mt76/mt7603/main.c- Extension
.c- Size
- 19722 bytes
- Lines
- 756
- Domain
- Driver Families
- Bucket
- drivers/net
- 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.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/etherdevice.hlinux/platform_device.hlinux/pci.hlinux/module.hmt7603.hmac.heeprom.h
Detected Declarations
function mt7603_startfunction mt7603_stopfunction mt7603_add_interfacefunction mt7603_remove_interfacefunction mt7603_init_edccafunction mt7603_set_channelfunction mt7603_set_sar_specsfunction mt7603_configfunction mt7603_configure_filterfunction mt7603_bss_info_changedfunction mt7603_sta_addfunction mt7603_sta_eventfunction mt7603_sta_removefunction mt7603_ps_tx_listfunction mt7603_sta_psfunction mt7603_ps_set_more_datafunction mt7603_release_buffered_framesfunction mt7603_set_keyfunction mt7603_conf_txfunction mt7603_flushfunction mt7603_sta_rate_tbl_updatefunction mt7603_set_coverage_classfunction mt7603_txfunction mt7603_initfunction mt7603_exitmodule init mt7603_init
Annotated Snippet
module_init(mt7603_init);
module_exit(mt7603_exit);
Annotation
- Immediate include surface: `linux/etherdevice.h`, `linux/platform_device.h`, `linux/pci.h`, `linux/module.h`, `mt7603.h`, `mac.h`, `eeprom.h`.
- Detected declarations: `function mt7603_start`, `function mt7603_stop`, `function mt7603_add_interface`, `function mt7603_remove_interface`, `function mt7603_init_edcca`, `function mt7603_set_channel`, `function mt7603_set_sar_specs`, `function mt7603_config`, `function mt7603_configure_filter`, `function mt7603_bss_info_changed`.
- Atlas domain: Driver Families / drivers/net.
- Implementation status: integration implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
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.