diff options
author | Len Brown <len.brown@intel.com> | 2007-02-12 23:33:40 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-02-12 23:33:40 -0500 |
commit | c2b6705b75d9c7aff98a4602a32230639e10891c (patch) | |
tree | 757089d71810040b8dfb763e1ec4d2775609019d /drivers/acpi/button.c | |
parent | f52fd66d2ea794010c2d7536cf8e6abed0ac4947 (diff) | |
download | op-kernel-dev-c2b6705b75d9c7aff98a4602a32230639e10891c.zip op-kernel-dev-c2b6705b75d9c7aff98a4602a32230639e10891c.tar.gz |
ACPI: fix acpi_driver.name usage
It was erroneously used as a description rather than a name.
ie. turn this:
lenb@se7525gp2:/sys> ls bus/acpi/drivers
ACPI AC Adapter Driver ACPI Embedded Controller Driver ACPI Power Resource Driver
ACPI Battery Driver ACPI Fan Driver ACPI Processor Driver
ACPI Button Driver ACPI PCI Interrupt Link Driver ACPI Thermal Zone Driver
ACPI container driver ACPI PCI Root Bridge Driver hpet
into this:
lenb@se7525gp2:~> ls /sys/bus/acpi/drivers
ac battery button container ec fan hpet pci_link pci_root power processor thermal
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/button.c')
-rw-r--r-- | drivers/acpi/button.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c index 28ce5c6..45f960d 100644 --- a/drivers/acpi/button.c +++ b/drivers/acpi/button.c @@ -73,7 +73,7 @@ static int acpi_button_info_open_fs(struct inode *inode, struct file *file); static int acpi_button_state_open_fs(struct inode *inode, struct file *file); static struct acpi_driver acpi_button_driver = { - .name = ACPI_BUTTON_DRIVER_NAME, + .name = "button", .class = ACPI_BUTTON_CLASS, .ids = "button_power,button_sleep,PNP0C0D,PNP0C0C,PNP0C0E", .ops = { |