|
Linux Kernel
3.7.1
|
#include <linux/module.h>#include <linux/types.h>#include <linux/errno.h>#include <linux/fs.h>#include <linux/miscdevice.h>#include <linux/fcntl.h>#include <linux/nvram.h>#include <linux/init.h>#include <asm/uaccess.h>#include <asm/nvram.h>Go to the source code of this file.
Macros | |
| #define | NVRAM_VERSION "1.0" |
| #define | NVRAM_SIZE 8192 |
Functions | |
| int __init | nvram_init (void) |
| void __exit | nvram_cleanup (void) |
| module_init (nvram_init) | |
| module_exit (nvram_cleanup) | |
| MODULE_LICENSE ("GPL") | |
Variables | |
| struct file_operations | nvram_fops |
| module_exit | ( | nvram_cleanup | ) |
| module_init | ( | nvram_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
| struct file_operations nvram_fops |
1.8.2