aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
authorYu Luming <luming.yu@gmail.com>2006-12-19 15:56:15 -0500
committerLen Brown <len.brown@intel.com>2006-12-20 01:42:19 -0500
commit519ab5f2be65b72cf12ae99c89752bbe79b44df6 (patch)
tree6e404b214e426e6ccc08e414df405655fb2b404c /drivers/acpi
parentf4715189dfb1c381ad36b7e02e3716fb7a7f84db (diff)
ACPI: video: Add dev argument for backlight_device_register
This patch set adds generic abstract layer support for acpi video driver to have generic user interface to control backlight and output switch control by leveraging the existing backlight sysfs class driver, and by adding a new video output sysfs class driver. This patch: Add dev argument for backlight_device_register to link the class device to real device object. The platform specific driver should find a way to get the real device object for their video device. [akpm@osdl.org: build fix] [akpm@osdl.org: fix msi-laptop.c] Signed-off-by: Luming Yu <Luming.yu@intel.com> Cc: "Antonino A. Daplas" <adaplas@pol.net> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r--drivers/acpi/asus_acpi.c2
-rw-r--r--drivers/acpi/ibm_acpi.c2
-rw-r--r--drivers/acpi/toshiba_acpi.c3
3 files changed, 4 insertions, 3 deletions
diff --git a/drivers/acpi/asus_acpi.c b/drivers/acpi/asus_acpi.c
index bf7bc25e680e..11468e46253c 100644
--- a/drivers/acpi/asus_acpi.c
+++ b/drivers/acpi/asus_acpi.c
@@ -1402,7 +1402,7 @@ static int __init asus_acpi_init(void)
1402 return result; 1402 return result;
1403 } 1403 }
1404 1404
1405 asus_backlight_device = backlight_device_register("asus", NULL, 1405 asus_backlight_device = backlight_device_register("asus",NULL,NULL,
1406 &asus_backlight_data); 1406 &asus_backlight_data);
1407 if (IS_ERR(asus_backlight_device)) { 1407 if (IS_ERR(asus_backlight_device)) {
1408 printk(KERN_ERR "Could not register asus backlight device\n"); 1408 printk(KERN_ERR "Could not register asus backlight device\n");
diff --git a/drivers/acpi/ibm_acpi.c b/drivers/acpi/ibm_acpi.c
index 1397efb71341..da08b9c62ffc 100644
--- a/drivers/acpi/ibm_acpi.c
+++ b/drivers/acpi/ibm_acpi.c
@@ -1714,7 +1714,7 @@ static struct backlight_properties ibm_backlight_data = {
1714 1714
1715static int brightness_init(void) 1715static int brightness_init(void)
1716{ 1716{
1717 ibm_backlight_device = backlight_device_register("ibm", NULL, 1717 ibm_backlight_device = backlight_device_register("ibm", NULL, NULL,
1718 &ibm_backlight_data); 1718 &ibm_backlight_data);
1719 if (IS_ERR(ibm_backlight_device)) { 1719 if (IS_ERR(ibm_backlight_device)) {
1720 printk(IBM_ERR "Could not register backlight device\n"); 1720 printk(IBM_ERR "Could not register backlight device\n");
diff --git a/drivers/acpi/toshiba_acpi.c b/drivers/acpi/toshiba_acpi.c
index 2f35f891593f..88aeccbafaaf 100644
--- a/drivers/acpi/toshiba_acpi.c
+++ b/drivers/acpi/toshiba_acpi.c
@@ -590,7 +590,8 @@ static int __init toshiba_acpi_init(void)
590 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir); 590 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
591 } 591 }
592 592
593 toshiba_backlight_device = backlight_device_register("toshiba", NULL, 593 toshiba_backlight_device = backlight_device_register("toshiba",NULL,
594 NULL,
594 &toshiba_backlight_data); 595 &toshiba_backlight_data);
595 if (IS_ERR(toshiba_backlight_device)) { 596 if (IS_ERR(toshiba_backlight_device)) {
596 printk(KERN_ERR "Could not register toshiba backlight device\n"); 597 printk(KERN_ERR "Could not register toshiba backlight device\n");