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

📄 pm_test.c

📁 linux下mmc_sd卡的驱动.rar
💻 C
字号:
/* Power Managment Test Module.  RTSoft Co. 2002 */ /* The necessary header files *//* Standard in kernel modules */#include <linux/kernel.h>   /* We're doing kernel work */#include <linux/module.h>   /* Specifically, a module */#define CONFIG_PM#include <linux/pm.h>static int pmdata = -1;/* Initialize the module - register the proc file  */int init_module(){  pm_send_all(PM_SUSPEND,&pmdata);      return(0);}/* Cleanup - unregister our file from /proc */void cleanup_module(){  pm_send_all(PM_RESUME,NULL);}MODULE_LICENSE( "GPL" );

⌨️ 快捷键说明

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