drivers/usb/typec/mux/intel_pmc_mux.c

Source file repositories/reference/linux-study-clean/drivers/usb/typec/mux/intel_pmc_mux.c

File Facts

System
Linux kernel
Corpus path
drivers/usb/typec/mux/intel_pmc_mux.c
Extension
.c
Size
22531 bytes
Lines
852
Domain
Driver Families
Bucket
drivers/usb
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.

Dependency Surface

Detected Declarations

Annotated Snippet

module_init(pmc_usb_init);

static void __exit pmc_usb_exit(void)
{
	platform_driver_unregister(&pmc_usb_driver);
	debugfs_remove(pmc_mux_debugfs_root);
}
module_exit(pmc_usb_exit);

MODULE_AUTHOR("Heikki Krogerus <heikki.krogerus@linux.intel.com>");
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("Intel PMC USB mux control");

Annotation

Implementation Notes