* [PATCH] Input: synaptics - make dmi_check_system return immediately when a match is found
@ 2011-07-11 14:41 Axel Lin
2011-07-11 16:44 ` Dmitry Torokhov
0 siblings, 1 reply; 2+ messages in thread
From: Axel Lin @ 2011-07-11 14:41 UTC (permalink / raw)
To: linux-kernel; +Cc: Alessandro Rubini, Dmitry Torokhov, linux-input
We only care about if there is any successful match from the table
or no match at all, make the dmi_matched callback return 1 then
dmi_check_system will return immediately if we have a successful match.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
drivers/input/mouse/synaptics.c | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c
index e06e045..09e7e0e 100644
--- a/drivers/input/mouse/synaptics.c
+++ b/drivers/input/mouse/synaptics.c
@@ -801,6 +801,11 @@ static int synaptics_reconnect(struct psmouse *psmouse)
return 0;
}
+static int __init dmi_matched(const struct dmi_system_id *dmi)
+{
+ return 1;
+}
+
static bool impaired_toshiba_kbc;
static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
@@ -811,6 +816,7 @@ static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
},
+ .callback = dmi_matched,
},
{
/* Toshiba Dynabook */
@@ -818,6 +824,7 @@ static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
DMI_MATCH(DMI_PRODUCT_NAME, "dynabook"),
},
+ .callback = dmi_matched,
},
{
/* Toshiba Portege M300 */
@@ -825,7 +832,7 @@ static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE M300"),
},
-
+ .callback = dmi_matched,
},
{
/* Toshiba Portege M300 */
@@ -834,7 +841,7 @@ static const struct dmi_system_id __initconst toshiba_dmi_table[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "Portable PC"),
DMI_MATCH(DMI_PRODUCT_VERSION, "Version 1.0"),
},
-
+ .callback = dmi_matched,
},
#endif
{ }
@@ -850,6 +857,7 @@ static const struct dmi_system_id __initconst olpc_dmi_table[] = {
DMI_MATCH(DMI_SYS_VENDOR, "OLPC"),
DMI_MATCH(DMI_PRODUCT_NAME, "XO"),
},
+ .callback = dmi_matched,
},
#endif
{ }
--
1.7.4.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Input: synaptics - make dmi_check_system return immediately when a match is found
2011-07-11 14:41 [PATCH] Input: synaptics - make dmi_check_system return immediately when a match is found Axel Lin
@ 2011-07-11 16:44 ` Dmitry Torokhov
0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2011-07-11 16:44 UTC (permalink / raw)
To: Axel Lin; +Cc: linux-kernel, Alessandro Rubini, linux-input
On Mon, Jul 11, 2011 at 10:41:36PM +0800, Axel Lin wrote:
> We only care about if there is any successful match from the table
> or no match at all, make the dmi_matched callback return 1 then
> dmi_check_system will return immediately if we have a successful match.
>
This adds too much noise for little gain... With other patches we
already have callbacks defined, so it makes sense it apply them, this one
I think I'll drop.
Thanks.
--
Dmitry
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-07-11 16:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-11 14:41 [PATCH] Input: synaptics - make dmi_check_system return immediately when a match is found Axel Lin
2011-07-11 16:44 ` Dmitry Torokhov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).