Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 5439
b: refs/heads/master
c: 9ba5eaa
h: refs/heads/master
i:
  5437: 3e0fa3d
  5435: d44127b
  5431: d9e0a74
  5423: c8c82f1
  5407: c17e33a
  5375: 7e47747
v: v3
  • Loading branch information
Simon Horman authored and Dmitry Torokhov committed Jul 11, 2005
1 parent 512eeba commit 5634742
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 20f07944af80a2916b2f6ac1559c0a680c309c0e
refs/heads/master: 9ba5eaafa1bff1d2dc7f6b9fb4cc6e313dcd6105
10 changes: 9 additions & 1 deletion trunk/drivers/input/mouse/synaptics.c
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,13 @@ static struct dmi_system_id toshiba_dmi_table[] = {
DMI_MATCH(DMI_PRODUCT_NAME , "Satellite"),
},
},
{
.ident = "Toshiba Dynabook",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
DMI_MATCH(DMI_PRODUCT_NAME , "dynabook"),
},
},
{ }
};
#endif
Expand Down Expand Up @@ -656,7 +663,8 @@ int synaptics_init(struct psmouse *psmouse)
* thye same as rate of standard PS/2 mouse.
*/
if (psmouse->rate >= 80 && dmi_check_system(toshiba_dmi_table)) {
printk(KERN_INFO "synaptics: Toshiba Satellite detected, limiting rate to 40pps.\n");
printk(KERN_INFO "synaptics: Toshiba %s detected, limiting rate to 40pps.\n",
dmi_get_system_info(DMI_PRODUCT_NAME));
psmouse->rate = 40;
}
#endif
Expand Down

0 comments on commit 5634742

Please sign in to comment.