Linux Kernel
3.7.1
|
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/input.h>
#include <linux/input/sparse-keymap.h>
#include <linux/dmi.h>
#include <linux/fb.h>
#include <acpi/acpi_bus.h>
#include "asus-wmi.h"
Go to the source code of this file.
Macros | |
#define | pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
#define | EEEPC_WMI_FILE "eeepc-wmi" |
#define | EEEPC_ACPI_HID "ASUS010" /* old _HID used in eeepc-laptop */ |
#define | EEEPC_WMI_EVENT_GUID "ABBC0F72-8EA1-11D1-00A0-C90629100000" |
#define | HOME_PRESS 0xe4 |
#define | HOME_HOLD 0xea |
#define | HOME_RELEASE 0xe5 |
Functions | |
MODULE_AUTHOR ("Corentin Chary <[email protected]>") | |
MODULE_DESCRIPTION ("Eee PC WMI Hotkey Driver") | |
MODULE_LICENSE ("GPL") | |
MODULE_ALIAS ("wmi:"EEEPC_WMI_EVENT_GUID) | |
module_param (hotplug_wireless, bool, 0444) | |
MODULE_PARM_DESC (hotplug_wireless,"Enable hotplug for wireless device. ""If your laptop needs that, please report to ""acpi4asus-user@lists.sourceforge.net.") | |
module_init (eeepc_wmi_init) | |
module_exit (eeepc_wmi_exit) | |
Definition at line 46 of file eeepc-wmi.c.
#define EEEPC_WMI_EVENT_GUID "ABBC0F72-8EA1-11D1-00A0-C90629100000" |
Definition at line 48 of file eeepc-wmi.c.
#define EEEPC_WMI_FILE "eeepc-wmi" |
Definition at line 40 of file eeepc-wmi.c.
#define HOME_HOLD 0xea |
Definition at line 62 of file eeepc-wmi.c.
#define HOME_PRESS 0xe4 |
Definition at line 61 of file eeepc-wmi.c.
#define HOME_RELEASE 0xe5 |
Definition at line 63 of file eeepc-wmi.c.
Definition at line 27 of file eeepc-wmi.c.
MODULE_ALIAS | ( | "wmi:" | EEEPC_WMI_EVENT_GUID | ) |
MODULE_AUTHOR | ( | "Corentin Chary <[email protected]>" | ) |
MODULE_DESCRIPTION | ( | "Eee PC WMI Hotkey Driver" | ) |
module_exit | ( | eeepc_wmi_exit | ) |
module_init | ( | eeepc_wmi_init | ) |
MODULE_LICENSE | ( | "GPL" | ) |
module_param | ( | hotplug_wireless | , |
bool | , | ||
0444 | |||
) |