From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752945Ab1JMGwH (ORCPT ); Thu, 13 Oct 2011 02:52:07 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:47953 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751118Ab1JMGwF (ORCPT ); Thu, 13 Oct 2011 02:52:05 -0400 From: Ike Panhc To: platform-driver-x86@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Matthew Garrett , Joey Lee Subject: [PATCH] acer-wmi: blacklist Thinkpad edge E520 Date: Thu, 13 Oct 2011 14:51:58 +0800 Message-Id: <1318488718-4744-1-git-send-email-ike.pan@canonical.com> X-Mailer: git-send-email 1.7.5.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org BugLink: http://launchpad.net/bugs/836865 BugLink: http://launchpad.net/bugs/826784 There are reports say that acer-wmi is loaded on Thinkpad E520 which cause wireless connection hard blocked and we can not unblock it. It will be better not to load acer-wmi on this machine. Signed-off-by: Ike Panhc --- drivers/platform/x86/acer-wmi.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c index af2bb20..dc9a116 100644 --- a/drivers/platform/x86/acer-wmi.c +++ b/drivers/platform/x86/acer-wmi.c @@ -325,6 +325,13 @@ static struct dmi_system_id __devinitdata acer_blacklist[] = { DMI_MATCH(DMI_PRODUCT_NAME, "AOA150"), }, }, + { + .ident = "Lenovo Thinkpad Edge E520", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "114320U"), + }, + }, {} }; -- 1.7.5.4