diff options
author | Corentin Chary <corentincj@iksaif.net> | 2009-01-20 10:17:42 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-01-20 14:34:45 -0500 |
commit | 2a7dc0d8c60325e9bf820900bf919430e5a419ab (patch) | |
tree | 9d1bdd2be600528702a2ce8b0e54ee1a8a0573ff /drivers/platform | |
parent | 1021e2119eb33a990a2b9ff1410805dd9bdf7997 (diff) |
asus-laptop: use generic netlink interface
To be prepared for /proc/acpi/event removal we export events
also through generic netlink interface.
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/asus-laptop.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c index 8fb8b3591048..1b7a28c1da73 100644 --- a/drivers/platform/x86/asus-laptop.c +++ b/drivers/platform/x86/asus-laptop.c | |||
@@ -738,8 +738,9 @@ static void asus_hotk_notify(acpi_handle handle, u32 event, void *data) | |||
738 | lcd_blank(FB_BLANK_POWERDOWN); | 738 | lcd_blank(FB_BLANK_POWERDOWN); |
739 | } | 739 | } |
740 | 740 | ||
741 | acpi_bus_generate_proc_event(hotk->device, event, | 741 | acpi_bus_generate_netlink_event(hotk->device->pnp.device_class, |
742 | hotk->event_count[event % 128]++); | 742 | dev_name(&hotk->device->dev), event, |
743 | hotk->event_count[event % 128]++); | ||
743 | 744 | ||
744 | return; | 745 | return; |
745 | } | 746 | } |