From patchwork Wed Sep 6 12:40:05 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans de Goede X-Patchwork-Id: 9940589 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id D8F676035F for ; Wed, 6 Sep 2017 12:40:14 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BF6D228BD8 for ; Wed, 6 Sep 2017 12:40:14 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id BE1C928C21; Wed, 6 Sep 2017 12:40:14 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6E50628BFC for ; Wed, 6 Sep 2017 12:40:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753933AbdIFMkL (ORCPT ); Wed, 6 Sep 2017 08:40:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:54778 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753735AbdIFMkK (ORCPT ); Wed, 6 Sep 2017 08:40:10 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 840F2800A8; Wed, 6 Sep 2017 12:40:10 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 840F2800A8 Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=hdegoede@redhat.com Received: from shalem.localdomain.com (unknown [10.36.116.255]) by smtp.corp.redhat.com (Postfix) with ESMTP id 66DE47B242; Wed, 6 Sep 2017 12:40:09 +0000 (UTC) From: Hans de Goede To: Bartlomiej Zolnierkiewicz Cc: Hans de Goede , linux-fbdev@vger.kernel.org Subject: [PATCH] video/console: Update BIOS dates list for GPD win console rotation DMI quirk Date: Wed, 6 Sep 2017 14:40:05 +0200 Message-Id: <20170906124005.11573-2-hdegoede@redhat.com> In-Reply-To: <20170906124005.11573-1-hdegoede@redhat.com> References: <20170906124005.11573-1-hdegoede@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Wed, 06 Sep 2017 12:40:10 +0000 (UTC) Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Recently produced GPD win devices have a new BIOS, research into the changes in this BIOS has found a ChangeLog which also lists 2 previously unknown BIOS dates. Signed-off-by: Hans de Goede --- drivers/video/console/fbcon_dmi_quirks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/video/console/fbcon_dmi_quirks.c b/drivers/video/console/fbcon_dmi_quirks.c index 3fd40568070b..6904e47d1e51 100644 --- a/drivers/video/console/fbcon_dmi_quirks.c +++ b/drivers/video/console/fbcon_dmi_quirks.c @@ -46,8 +46,8 @@ static const struct fbcon_dmi_rotate_data rotate_data_gpd_win = { .width = 720, .height = 1280, .bios_dates = (const char * const []){ - "10/25/2016", "11/18/2016", "02/21/2017", - "03/20/2017", NULL }, + "10/25/2016", "11/18/2016", "12/23/2016", "12/26/2016", + "02/21/2017", "03/20/2017", "05/25/2017", NULL }, .rotate = FB_ROTATE_CW, };