From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8F09713792B; Thu, 12 Dec 2024 15:52:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734018752; cv=none; b=M03qVESUGIbH1NdNaqPcNB7jgiXgsJHEgXcGeajSM7yThtAha+4ekZ3YSI6cOZJGT9A8tcTBm9jl3cVYKArl3LbwQD9/A64efL3HXwH8AT+dhF4OqAH4Ds3GN7ddINriWPxtTC6JdROfpABHnLtiUzS7Fr7LF2tQrK8zW3gCpts= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734018752; c=relaxed/simple; bh=2LL/7j7j6RzOEa/apptBIUllgfHsu+FDhtRVvDatuVg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=YSLDBKfEoBfOy+fAuXr+o5wCiDlNWL2vXMLwk0Pnn3izdyKIQqm/7iHA+91QegUlWgeprfzeyUEOFpyaOPU/AbuolvdE+T69ynTFQo6/xPwOQ+KnmbqlZFQq8lQPOPUKfuoSEdtLMZvaE/mot3ok6nX2N9oAlTERspn9gLMTVCs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=JZ31uVMD; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="JZ31uVMD" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A1871C4CECE; Thu, 12 Dec 2024 15:52:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734018752; bh=2LL/7j7j6RzOEa/apptBIUllgfHsu+FDhtRVvDatuVg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JZ31uVMDNVw7xLAcKYxMXdAa2dTabOpdNmEjSqkOgljwuxqwy0DnR3HconcNgTbyN x5NufUI4N/dZVrXh9m1D0UnmNQ7kBPr9pyhRJ00VKk79XJ9dA6U2PGmPBrlycF6GQV Mq+cfLIzQo2FkQ3ckk2th3jgPZH3a/cWsCJc8zVI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Hans de Goede , Jani Nikula , Sasha Levin Subject: [PATCH 6.1 022/772] drm: panel-orientation-quirks: Make Lenovo Yoga Tab 3 X90F DMI match less strict Date: Thu, 12 Dec 2024 15:49:27 +0100 Message-ID: <20241212144350.858957070@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144349.797589255@linuxfoundation.org> References: <20241212144349.797589255@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hans de Goede [ Upstream commit 052ef642bd6c108a24f375f9ad174b97b425a50b ] There are 2G and 4G RAM versions of the Lenovo Yoga Tab 3 X90F and it turns out that the 2G version has a DMI product name of "CHERRYVIEW D1 PLATFORM" where as the 4G version has "CHERRYVIEW C0 PLATFORM". The sys-vendor + product-version check are unique enough that the product-name check is not necessary. Drop the product-name check so that the existing DMI match for the 4G RAM version also matches the 2G RAM version. Signed-off-by: Hans de Goede Acked-by: Jani Nikula Link: https://patchwork.freedesktop.org/patch/msgid/20240825132131.6643-1-hdegoede@redhat.com Signed-off-by: Sasha Levin --- drivers/gpu/drm/drm_panel_orientation_quirks.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c index 5b2506c65e952..259a0c765bafb 100644 --- a/drivers/gpu/drm/drm_panel_orientation_quirks.c +++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c @@ -403,7 +403,6 @@ static const struct dmi_system_id orientation_data[] = { }, { /* Lenovo Yoga Tab 3 X90F */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"), - DMI_MATCH(DMI_PRODUCT_NAME, "CHERRYVIEW D1 PLATFORM"), DMI_MATCH(DMI_PRODUCT_VERSION, "Blade3-10A-001"), }, .driver_data = (void *)&lcd1600x2560_rightside_up, -- 2.43.0