From nobody Thu Oct 2 04:47:02 2025 Received: from gloria.sntech.de (gloria.sntech.de [185.11.138.130]) (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 B95F9318141 for ; Tue, 23 Sep 2025 13:18:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.11.138.130 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758633522; cv=none; b=sJQs/BvOHU1tVKRFtf6r36LJMNAsBn8y6LhyKjFYo8cJA9lYSWOIiRAAPVxXZA7X5Rcx2JdFyra1th5GxUqwuRsgnnsVf7Nqe02zJWzG4VenLaR+YjXDjcVU1MGtLQKELwBOULTsb/eu9jfTNqeAiIzmFpsYqFmM9eLlT3hLIFI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758633522; c=relaxed/simple; bh=7e8bhWKRVDtf8aKVV0+AAUPqW42KeeIQqV6I3K53e8k=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=BWCaJM0dRNM1/k35okvg5FKVF8CwYjHBjmNzBhvQnGS+fFxKWRe19nY65f04Dw3LUetCHqPH+o8uEZvoxQj7z7an1uyz3Lp+cU2q6xx+1tvO9gZC038VK1lcSp4Ypv4OyKB1ZOI+ZR/M6Drjz3dD2Q/p8vIDwhTZaaNTCfwNi8Y= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=sntech.de; spf=pass smtp.mailfrom=sntech.de; dkim=pass (2048-bit key) header.d=sntech.de header.i=@sntech.de header.b=WIjRcKzn; arc=none smtp.client-ip=185.11.138.130 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=sntech.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=sntech.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=sntech.de header.i=@sntech.de header.b="WIjRcKzn" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sntech.de; s=gloria202408; h=Content-Transfer-Encoding:MIME-Version:References: In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Reply-To:Content-Type; bh=FXGH735qWrvmiJLs+utyhLgjj/KKbRgYW73cH1TeOdo=; b=WIjRcKzn43mkDOXPxw5qPAvqoO f56GnwgxgTynW+2ULQK4zMByFzOyp6Gda1ec0gavlS6jQf+Q4nEyLD1VYwprFa/cMgg/BFBygc2SH w+LVMeBeaaIss6FF8EY8cxNNM8/VxK8nKOIimdwkTFHKFueqE+ohbOtvY6K7m13pd6hW+Zkwj+fGP Ol89ObEcWmLnZQ1ymNR6f9Yh6akQUnGeT4puJMDyS7t5QXRAjURSqPk3pY+IGI8sl7Zj2E5PWxSFT amxjYxPdvM5zJl2gQOQ53e6UARuyP8jtqnQWwn1xodBo2NEsdZSJWwMv/hknYH5jP2XPoGxiu4KCD 4XQakMWg==; Received: from i53875a1e.versanet.de ([83.135.90.30] helo=localhost.localdomain) by gloria.sntech.de with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1v12ud-0003yq-3g; Tue, 23 Sep 2025 15:18:31 +0200 From: Heiko Stuebner To: lee@kernel.org, srini@kernel.org Cc: linux-kernel@vger.kernel.org, heiko@sntech.de Subject: [PATCH v2 2/2] mfd: qnap-mcu: Hook up the eeprom sub-device Date: Tue, 23 Sep 2025 15:18:15 +0200 Message-ID: <20250923131815.1898332-3-heiko@sntech.de> X-Mailer: git-send-email 2.47.2 In-Reply-To: <20250923131815.1898332-1-heiko@sntech.de> References: <20250923131815.1898332-1-heiko@sntech.de> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Add the qnap-mcu-eeprom platform-driver as sub-device for the MCU. Signed-off-by: Heiko Stuebner --- drivers/mfd/qnap-mcu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mfd/qnap-mcu.c b/drivers/mfd/qnap-mcu.c index 4ec1f4cf902f..2be429a50611 100644 --- a/drivers/mfd/qnap-mcu.c +++ b/drivers/mfd/qnap-mcu.c @@ -264,6 +264,7 @@ static const struct qnap_mcu_variant qnap_ts433_mcu =3D= { }; =20 static struct mfd_cell qnap_mcu_cells[] =3D { + { .name =3D "qnap-mcu-eeprom", }, { .name =3D "qnap-mcu-input", }, { .name =3D "qnap-mcu-leds", }, { .name =3D "qnap-mcu-hwmon", } --=20 2.47.2