drivers/soc/nuvoton/wpcm450-soc.c

Source file repositories/reference/linux-study-clean/drivers/soc/nuvoton/wpcm450-soc.c

File Facts

System
Linux kernel
Corpus path
drivers/soc/nuvoton/wpcm450-soc.c
Extension
.c
Size
2258 bytes
Lines
110
Domain
Driver Families
Bucket
drivers/soc
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(wpcm450_soc_init);

static void __exit wpcm450_soc_exit(void)
{
	if (wpcm450_soc) {
		soc_device_unregister(wpcm450_soc);
		wpcm450_soc = NULL;
		kfree(wpcm450_attr);
	}
}
module_exit(wpcm450_soc_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Jonathan Neuschäfer");
MODULE_DESCRIPTION("Nuvoton WPCM450 SoC Identification driver");

Annotation

Implementation Notes