eeepc-laptop: restore acpi_generate_proc_event()
Restore acpi_generate_proc_event() for backward compatibility with old acpi scripts. Signed-off-by: Corentin Chary <corentincj@iksaif.net> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
6050c8dd70
commit
7950b71c3b
1 changed files with 5 additions and 1 deletions
|
@ -557,13 +557,17 @@ static void eeepc_rfkill_notify(acpi_handle handle, u32 event, void *data)
|
||||||
static void eeepc_hotk_notify(acpi_handle handle, u32 event, void *data)
|
static void eeepc_hotk_notify(acpi_handle handle, u32 event, void *data)
|
||||||
{
|
{
|
||||||
static struct key_entry *key;
|
static struct key_entry *key;
|
||||||
|
u16 count;
|
||||||
|
|
||||||
if (!ehotk)
|
if (!ehotk)
|
||||||
return;
|
return;
|
||||||
if (event >= NOTIFY_BRN_MIN && event <= NOTIFY_BRN_MAX)
|
if (event >= NOTIFY_BRN_MIN && event <= NOTIFY_BRN_MAX)
|
||||||
notify_brn();
|
notify_brn();
|
||||||
|
count = ehotk->event_count[event % 128]++;
|
||||||
|
acpi_bus_generate_proc_event(ehotk->device, event, count);
|
||||||
acpi_bus_generate_netlink_event(ehotk->device->pnp.device_class,
|
acpi_bus_generate_netlink_event(ehotk->device->pnp.device_class,
|
||||||
dev_name(&ehotk->device->dev), event,
|
dev_name(&ehotk->device->dev), event,
|
||||||
ehotk->event_count[event % 128]++);
|
count);
|
||||||
if (ehotk->inputdev) {
|
if (ehotk->inputdev) {
|
||||||
key = eepc_get_entry_by_scancode(event);
|
key = eepc_get_entry_by_scancode(event);
|
||||||
if (key) {
|
if (key) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue