aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/mouse/synaptics.c
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2009-12-04 13:24:20 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2009-12-05 01:14:43 -0500
commit9961e25976493f4d50704dafc0e8ff8365181538 (patch)
tree7e1e4e318d4070428b4baaa94711e951078f4f80 /drivers/input/mouse/synaptics.c
parentc45fc81ec6a9bd6cca42e60b35b31f9df822860b (diff)
Input: psmouse - remove identification strings from DMI tables
The driver does not reference identification strings in DMI tables and since these strings are no longer required by DMI core we can safely remove them and save some memory. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/mouse/synaptics.c')
-rw-r--r--drivers/input/mouse/synaptics.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c
index 36d6df4c0a78..05689e732191 100644
--- a/drivers/input/mouse/synaptics.c
+++ b/drivers/input/mouse/synaptics.c
@@ -635,21 +635,21 @@ static bool impaired_toshiba_kbc;
635static const struct dmi_system_id __initconst toshiba_dmi_table[] = { 635static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
636#if defined(CONFIG_DMI) && defined(CONFIG_X86) 636#if defined(CONFIG_DMI) && defined(CONFIG_X86)
637 { 637 {
638 .ident = "Toshiba Satellite", 638 /* Toshiba Satellite */
639 .matches = { 639 .matches = {
640 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), 640 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
641 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"), 641 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
642 }, 642 },
643 }, 643 },
644 { 644 {
645 .ident = "Toshiba Dynabook", 645 /* Toshiba Dynabook */
646 .matches = { 646 .matches = {
647 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), 647 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
648 DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"), 648 DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
649 }, 649 },
650 }, 650 },
651 { 651 {
652 .ident = "Toshiba Portege M300", 652 /* Toshiba Portege M300 */
653 .matches = { 653 .matches = {
654 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), 654 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
655 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"), 655 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
@@ -657,7 +657,7 @@ static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
657 657
658 }, 658 },
659 { 659 {
660 .ident = "Toshiba Portege M300", 660 /* Toshiba Portege M300 */
661 .matches = { 661 .matches = {
662 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), 662 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
663 DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"), 663 DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),