From patchwork Tue May 13 01:51:50 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Aaron Lu X-Patchwork-Id: 4162111 Return-Path: X-Original-To: patchwork-linux-acpi@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id CC5FB9F1C0 for ; Tue, 13 May 2014 01:51:55 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 16DB520256 for ; Tue, 13 May 2014 01:51:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F3D9F20221 for ; Tue, 13 May 2014 01:51:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751541AbaEMBvw (ORCPT ); Mon, 12 May 2014 21:51:52 -0400 Received: from mga11.intel.com ([192.55.52.93]:12759 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751420AbaEMBvw (ORCPT ); Mon, 12 May 2014 21:51:52 -0400 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 12 May 2014 18:51:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,1040,1389772800"; d="scan'208";a="537994228" Received: from aaronlu.sh.intel.com ([10.239.37.63]) by fmsmga002.fm.intel.com with ESMTP; 12 May 2014 18:51:51 -0700 Message-ID: <53717AB6.3020905@intel.com> Date: Tue, 13 May 2014 09:51:50 +0800 From: Aaron Lu MIME-Version: 1.0 To: =?UTF-8?B?VMOpbyBNYXphcnM=?= , "Rafael J. Wysocki" CC: ACPI Devel Mailing List Subject: [PATCH] ACPI / video: correct DMI tag for Dell Inspiron 7520 References: In-Reply-To: Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Spam-Status: No, score=-7.5 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The DMI tag used to identify Dell Inspiron 7520 should be product name instead of product version. Reported-and-tested-by: Téo Mazars Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=909552 Cc: All applicable Signed-off-by: Aaron Lu --- drivers/acpi/video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index fced27d8e42f..010d259a2466 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c @@ -508,7 +508,7 @@ static struct dmi_system_id video_dmi_table[] __initdata = { .ident = "Dell Inspiron 7520", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), - DMI_MATCH(DMI_PRODUCT_VERSION, "Inspiron 7520"), + DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7520"), }, }, {