diff options
author | Alberto Mardegan <mardy@users.sourceforge.net> | 2011-04-08 17:02:03 +0200 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-04-12 11:10:53 -0400 |
commit | 3d536ed415a8f5d3f683597521df071af9f2866c (patch) | |
tree | 01fd0e82883f805e4fac5ab055ebf081357485ea | |
parent | 101650726e4a5c0eca3e2716aefeb3296bb177b9 (diff) | |
download | op-kernel-dev-3d536ed415a8f5d3f683597521df071af9f2866c.zip op-kernel-dev-3d536ed415a8f5d3f683597521df071af9f2866c.tar.gz |
samsung-laptop: Samsung R410P backlight driver
Here's a trivial patch which adds support to the backlight device found
in Samsung R410 Plus laptops.
Signed-off-by: Alberto Mardegan <mardy@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
[mmarek: cherry-picked from staging commit d542f180]
Signed-off-by: Michal Marek <mmarek@suse.cz>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
-rw-r--r-- | drivers/platform/x86/samsung-laptop.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/platform/x86/samsung-laptop.c b/drivers/platform/x86/samsung-laptop.c index 11a3fe2..39f30ff 100644 --- a/drivers/platform/x86/samsung-laptop.c +++ b/drivers/platform/x86/samsung-laptop.c @@ -571,6 +571,16 @@ static struct dmi_system_id __initdata samsung_dmi_table[] = { .callback = dmi_check_cb, }, { + .ident = "R410 Plus", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, + "SAMSUNG ELECTRONICS CO., LTD."), + DMI_MATCH(DMI_PRODUCT_NAME, "R410P"), + DMI_MATCH(DMI_BOARD_NAME, "R460"), + }, + .callback = dmi_check_cb, + }, + { .ident = "R518", .matches = { DMI_MATCH(DMI_SYS_VENDOR, |