summaryrefslogtreecommitdiffstats
path: root/drivers/platform/x86/acer-wmi.c
diff options
context:
space:
mode:
authorAxel Lin2010-06-30 07:32:16 +0200
committerMatthew Garrett2010-08-03 15:48:52 +0200
commitd53bf0f32410c8c738935aa3d9740d66d39ba967 (patch)
treec9383303895027abb6e8a0a6ee63f1dcc3d9f294 /drivers/platform/x86/acer-wmi.c
parentacer-wmi: set permissions on interface file to S_IRUGO (diff)
downloadkernel-qcow2-linux-d53bf0f32410c8c738935aa3d9740d66d39ba967.tar.gz
kernel-qcow2-linux-d53bf0f32410c8c738935aa3d9740d66d39ba967.tar.xz
kernel-qcow2-linux-d53bf0f32410c8c738935aa3d9740d66d39ba967.zip
acer-wmi: make dmi_matched to return 1 instead of 0
dmi_check_system() walks the table running matching functions until someone returns non zero or we hit the end. This patch makes dmi_matched to return 1 so dmi_check_system() return immediately when a match is found. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform/x86/acer-wmi.c')
-rw-r--r--drivers/platform/x86/acer-wmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
index aacd0602f859..dec558ee29e5 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -200,7 +200,7 @@ static void set_quirks(void)
static int dmi_matched(const struct dmi_system_id *dmi)
{
quirks = dmi->driver_data;
- return 0;
+ return 1;
}
static struct quirk_entry quirk_unknown = {