Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 118801
b: refs/heads/master
c: 56960b5
h: refs/heads/master
i:
  118799: c11f0aa
v: v3
  • Loading branch information
Tony Vroon authored and Len Brown committed Nov 12, 2008
1 parent dca1b76 commit c5ee67a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a1a8d334f9e8c89a15bba8f34e443a37c29079c3
refs/heads/master: 56960b546a88844a6f5295a9f81aab9e6b81edc9
15 changes: 15 additions & 0 deletions trunk/drivers/misc/fujitsu-laptop.c
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,14 @@ static int dmi_check_cb_s6410(const struct dmi_system_id *id)
return 0;
}

static int dmi_check_cb_s6420(const struct dmi_system_id *id)
{
dmi_check_cb_common(id);
fujitsu->keycode1 = KEY_SCREENLOCK; /* "Lock" */
fujitsu->keycode2 = KEY_HELP; /* "Mobility Center" */
return 0;
}

static int dmi_check_cb_p8010(const struct dmi_system_id *id)
{
dmi_check_cb_common(id);
Expand All @@ -481,6 +489,13 @@ static struct dmi_system_id fujitsu_dmi_table[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6410"),
},
.callback = dmi_check_cb_s6410},
{
.ident = "Fujitsu Siemens S6420",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6420"),
},
.callback = dmi_check_cb_s6420},
{
.ident = "Fujitsu LifeBook P8010",
.matches = {
Expand Down

0 comments on commit c5ee67a

Please sign in to comment.