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 8C86938D8ED; Sat, 28 Feb 2026 17:36:49 +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=1772300209; cv=none; b=dcJoKQ+HPk4Bulm3avxJq/sYl8VLJT/shP4RcnfjXT6R5LQDRRkPp4BEY+4pS+Nz+Bl+TrpBLNYMPfkjVHVaHmNDrlMUXPyfRPiL5OsEVM1b40IFXOJkAnN1KGmQ2BmKahitv9nzxkhcjoEuqT6XXV6iiz5+m1+O2f0EqbfevwM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772300209; c=relaxed/simple; bh=qFrL+5AJ5lSWHyUdcL93osAkU/wRQ815d3F1yiyPzqc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=ESmdGY8smxwiwslpust7zjRirTdOWkHWPLJ1Em7bhM6Aqd0vW+pNlBgV9Ho7wdI6D8Vcgq2WeKdcduBmDDtecPSLjhU3eYkQ8Pv8LgninS++0C26HRX6R5Byrbg8sPkqGhx0h+eeoOgsX41pE+02ogmranITVd47H6mNoEDgMrk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=LtFXyMCC; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="LtFXyMCC" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C4518C19425; Sat, 28 Feb 2026 17:36:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772300209; bh=qFrL+5AJ5lSWHyUdcL93osAkU/wRQ815d3F1yiyPzqc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LtFXyMCCNYV6nMjfsg6OK0IO5eGb5E5kQ1Bg/QvHzg683Lzg+fNUP/b3S0R9O2maN QXrr3VUrtegwxaoQ+kQIT9PVOrB1SIGLlCt4OZ/H/yxzg0+91sjvKRsc6jIsU13e5u cU/hTH2DaRx8r06tCzD8eQES7xlZ1kJNiC0mUeMJ4Itgc+KrgJfB5eLaLtaNr7fX+k /XPV2SHS+vh75hOen1Ym53WK4gkans9+vP+sEQMut9fiDKD7+EFze9hgot27dSuB3u RFFyo5lfzeNCNsl5dhLvQ1NL4ynNRqLnQNG+f7NonTSla62zIksRUwi6k28z8llv6y xJUR2aYOpJa5Q== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Armin Wolf , =?UTF-8?q?Pali=20Roh=C3=A1r?= , Guenter Roeck , Sasha Levin Subject: [PATCH 6.19 228/844] hwmon: (dell-smm) Add support for Dell OptiPlex 7080 Date: Sat, 28 Feb 2026 12:22:21 -0500 Message-ID: <20260228173244.1509663-229-sashal@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260228173244.1509663-1-sashal@kernel.org> References: <20260228173244.1509663-1-sashal@kernel.org> 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 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit From: Armin Wolf [ Upstream commit 46c3e87a79179454f741f797c274dd25f5c6125e ] The Dell OptiPlex 7080 supports the legacy SMM interface for reading sensors and performing fan control. Whitelist this machine so that this driver loads automatically. Closes: https://github.com/Wer-Wolf/i8kutils/issues/16 Signed-off-by: Armin Wolf Acked-by: Pali Rohár Link: https://lore.kernel.org/r/20260104000654.6406-1-W_Armin@gmx.de Signed-off-by: Guenter Roeck Signed-off-by: Sasha Levin --- drivers/hwmon/dell-smm-hwmon.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/hwmon/dell-smm-hwmon.c b/drivers/hwmon/dell-smm-hwmon.c index 93143cfc157cf..038edffc1ac74 100644 --- a/drivers/hwmon/dell-smm-hwmon.c +++ b/drivers/hwmon/dell-smm-hwmon.c @@ -1325,6 +1325,13 @@ static const struct dmi_system_id i8k_dmi_table[] __initconst = { DMI_MATCH(DMI_PRODUCT_NAME, "MP061"), }, }, + { + .ident = "Dell OptiPlex 7080", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "OptiPlex 7080"), + }, + }, { .ident = "Dell OptiPlex 7060", .matches = { -- 2.51.0