|
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/init.h>#include <linux/mutex.h>#include <asm/uaccess.h>#include <asm/nvram.h>Go to the source code of this file.
Macros | |
| #define | NVRAM_VERSION "1.1" |
| #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 |
| #define NVRAM_SIZE 8192 |
Definition at line 29 of file generic_nvram.c.
| #define NVRAM_VERSION "1.1" |
Definition at line 12 of file generic_nvram.c.
| module_exit | ( | nvram_cleanup | ) |
| module_init | ( | nvram_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
Definition at line 167 of file generic_nvram.c.
Definition at line 149 of file generic_nvram.c.
| struct file_operations nvram_fops |
Definition at line 135 of file generic_nvram.c.
1.8.2