⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dac_driver.mod.c

📁 S3C2410 DAC驱动程序
💻 C
字号:
#include <linux/module.h>#include <linux/vermagic.h>#include <linux/compiler.h>MODULE_INFO(vermagic, VERMAGIC_STRING);#undef unixstruct module __this_module__attribute__((section(".gnu.linkonce.this_module"))) = { .name = __stringify(KBUILD_MODNAME), .init = init_module,#ifdef CONFIG_MODULE_UNLOAD .exit = cleanup_module,#endif};static const struct modversion_info ____versions[]__attribute_used____attribute__((section("__versions"))) = {	{        0, "cleanup_module" },	{        0, "init_module" },	{        0, "struct_module" },	{        0, "__udivsi3" },	{        0, "unregister_chrdev_region" },	{        0, "kfree" },	{        0, "cdev_del" },	{        0, "malloc_sizes" },	{        0, "cdev_add" },	{        0, "cdev_init" },	{        0, "__memzero" },	{        0, "kmem_cache_alloc" },	{        0, "register_chrdev_region" },	{        0, "printk" },	{        0, "udelay" },	{        0, "__ioremap" },};static const char __module_depends[]__attribute_used____attribute__((section(".modinfo"))) ="depends=";

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -