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 AAA3418BB91; Fri, 27 Sep 2024 12:26:01 +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=1727439961; cv=none; b=gRVBIqf8h3LOtHPUc7FbwJuh9jClRnIvD5ImFwmyvdEaSHo20qPXcAN1VZZl53qjjwkxVuEhhSje7a2Jn4HPWNiTTZXnRs/3N+u38G+dMwudFTDgkiTayLk2m0rqobsQEssKUiYoIdhGS5LKcwNutb13nkHh3XFpbLymYoxUycA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727439961; c=relaxed/simple; bh=ZgkiKObFnZIvt6McmVJYN6fYLEKU44sZvRywobf9uPM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=tqmDSUSrU9vH/ryGl5LA2VvB/huCFe/67OxZyPejxsPnUCYSn1UF1k8We52QiOfvFzZrkdpn3j/gX5fIH+ztmrj2eMj0X5kJi4Whlmunk28fKkFX5AJVc0ud/bUY+tsLHEB4N/1tgOLG3CvXikt6xw8bB39JYiU/ZEfAs+pZX6U= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=G4MtHJO7; 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="G4MtHJO7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 36CF8C4CEC4; Fri, 27 Sep 2024 12:26:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1727439961; bh=ZgkiKObFnZIvt6McmVJYN6fYLEKU44sZvRywobf9uPM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=G4MtHJO7isivouPfj/9RAJBFzHck196iqMdGLA3Odu5ngJrbzF/nmV9qSuvirU+ie AZxWTc4QSfq3uPtN4UOdBkAeRaXRBXpBfcwxoJ3Bvgbx9P87QoKpy+hlBLzK9WuenU 5xG+OuEB+F/COJZRNk3hafoho5ffrw5iOfGfNeq0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Hans de Goede , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= , Sasha Levin Subject: [PATCH 6.6 11/54] platform/x86: x86-android-tablets: Make Lenovo Yoga Tab 3 X90F DMI match less strict Date: Fri, 27 Sep 2024 14:23:03 +0200 Message-ID: <20240927121720.163876451@linuxfoundation.org> X-Mailer: git-send-email 2.46.2 In-Reply-To: <20240927121719.714627278@linuxfoundation.org> References: <20240927121719.714627278@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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hans de Goede [ Upstream commit a3379eca24a7da5118a7d090da6f8eb8611acac8 ] 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 Link: https://lore.kernel.org/r/20240825132415.8307-1-hdegoede@redhat.com Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen Signed-off-by: Sasha Levin --- drivers/platform/x86/x86-android-tablets/dmi.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/platform/x86/x86-android-tablets/dmi.c b/drivers/platform/x86/x86-android-tablets/dmi.c index 5d6c12494f082..0c9d9caf074cb 100644 --- a/drivers/platform/x86/x86-android-tablets/dmi.c +++ b/drivers/platform/x86/x86-android-tablets/dmi.c @@ -122,7 +122,6 @@ const struct dmi_system_id x86_android_tablet_ids[] __initconst = { /* Lenovo Yoga Tab 3 Pro YT3-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 *)&lenovo_yt3_info, -- 2.43.0