From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 59A4EC3DA7A for ; Thu, 5 Jan 2023 13:52:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233939AbjAENvn (ORCPT ); Thu, 5 Jan 2023 08:51:43 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35134 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234175AbjAENua (ORCPT ); Thu, 5 Jan 2023 08:50:30 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 44642633A5 for ; Thu, 5 Jan 2023 05:48:36 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id C94F861A97 for ; Thu, 5 Jan 2023 13:47:54 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 68B0FC433F1; Thu, 5 Jan 2023 13:47:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672926474; bh=QBATBldnH97j5a6wP3U8v0ZSqqSKFF/ptzvMtMvWpXk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nvnVDZ2vUQM0fzq9itEWzBKAhHayYLScwyZdwppqa16XKQcyNHgYqWfR/RXQ6V+ED wg/S26ahAb0oSb9cgC51u2xkAKAmaam6yIahXRISXtILLQAo1MWg4uQG+fk4h0Mi9m 9CIMyvGlbY3dlzvKMqTIaD0NM0cQoyeq8weFcFRTyTvc2w6qCqSnbKMz9sHHgBMGCo yfJr5ZdOCIQmNaczYJGMaOcSr/sh5fwcDWbusTVKZniMnOTgtS7IVmJLJ0DqROys+w UKtyUHzuh8yYXorHO1hHCFLcEBsxEaC9EEzzyldSnGqbYI2smDTlvQvPl0rihRDSKl fERV8ww6lKz/Q== From: Arnd Bergmann To: Robert Jarzmik Cc: Daniel Mack , Haojian Zhuang , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Arnd Bergmann , Lee Jones , Philipp Zabel Subject: [PATCH 27/27] mfd: remove htc-pasic3 driver Date: Thu, 5 Jan 2023 14:46:22 +0100 Message-Id: <20230105134622.254560-28-arnd@kernel.org> X-Mailer: git-send-email 2.39.0 In-Reply-To: <20230105134622.254560-1-arnd@kernel.org> References: <20230105134622.254560-1-arnd@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Arnd Bergmann The htc-pasic3 MFD device was only used in the PXA magician machine that is now removed, so this can be recycled as well. Cc: Lee Jones Cc: Philipp Zabel Signed-off-by: Arnd Bergmann --- drivers/mfd/Kconfig | 9 -- drivers/mfd/Makefile | 2 - drivers/mfd/htc-pasic3.c | 210 --------------------------------- include/linux/mfd/htc-pasic3.h | 54 --------- 4 files changed, 275 deletions(-) delete mode 100644 drivers/mfd/htc-pasic3.c delete mode 100644 include/linux/mfd/htc-pasic3.h diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 5ea07a65f150..5c24841e5699 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -541,15 +541,6 @@ config MFD_HI655X_PMIC help Select this option to enable Hisilicon hi655x series pmic driver. -config HTC_PASIC3 - tristate "HTC PASIC3 LED/DS1WM chip support" - select MFD_CORE - help - This core driver provides register access for the LED/DS1WM - chips labeled "AIC2" and "AIC3", found on HTC Blueangel and - HTC Magician devices, respectively. Actual functionality is - handled by the leds-pasic3 and ds1wm drivers. - config MFD_INTEL_QUARK_I2C_GPIO tristate "Intel Quark MFD I2C GPIO" depends on PCI diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile index 4969ea6e24f1..09712495f4f4 100644 --- a/drivers/mfd/Makefile +++ b/drivers/mfd/Makefile @@ -17,8 +17,6 @@ obj-$(CONFIG_MFD_ENE_KB3930) += ene-kb3930.o obj-$(CONFIG_MFD_EXYNOS_LPASS) += exynos-lpass.o obj-$(CONFIG_MFD_GATEWORKS_GSC) += gateworks-gsc.o -obj-$(CONFIG_HTC_PASIC3) += htc-pasic3.o - obj-$(CONFIG_MFD_TI_LP873X) += lp873x.o obj-$(CONFIG_MFD_TI_LP87565) += lp87565.o obj-$(CONFIG_MFD_TI_AM335X_TSCADC) += ti_am335x_tscadc.o diff --git a/drivers/mfd/htc-pasic3.c b/drivers/mfd/htc-pasic3.c deleted file mode 100644 index 0c46b7e64b2d..000000000000 diff --git a/include/linux/mfd/htc-pasic3.h b/include/linux/mfd/htc-pasic3.h deleted file mode 100644 index 3d3ed67bd969..000000000000 -- 2.39.0 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 4531BC3DA7A for ; Thu, 5 Jan 2023 22:05:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=kmtV0HwX4fk1B0reyP39I8s2FRY1UuhyLCPGYh1Hggs=; b=Pg0s8sPM1urmMS Xvu05cUt2peJq5L4Lf5vTfmgAeDLsQ7go4oopeNIK0o2lcncRGCDgWCpifOokqv7EVSE78W6t6MHj lzHQLc2Txb7B3Y+1VoDmzQMpsfzvpp4iLlrszLTPNgl63/zbod6SCPZhDgDs8Z8AUNTLuh5bPlQEf 9Fm+1r+2O1OtjOQG3pbAPxRuCv0NAufRD7xOKw1+XXC5z4Y/cgkKmePyD4PJxVTRD+VGZu6IeCLUe CN1KJHlpJgNpzhhe0aqjoGVqABxtEQTg6ElNG4AKARW/Rd1gYK1K/xSWPw+B61XGpcWNcMurkl/WH 4XaKHCKEt9MO/Xio/2CQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pDYLL-00FOkQ-PY; Thu, 05 Jan 2023 22:04:12 +0000 Received: from desiato.infradead.org ([2001:8b0:10b:1:d65d:64ff:fe57:4e05]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1pDV8u-00Dj3i-VD for linux-arm-kernel@bombadil.infradead.org; Thu, 05 Jan 2023 18:39:08 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=desiato.20200630; h=Content-Transfer-Encoding:MIME-Version :References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=RW8uf4zWIqJiIDVhfx2KnuSmq3rfr4Ut3tkrsD5dja4=; b=CTmatTzG4CdT1yjlB4qwDrQu5H TxEQctbrpzwlOKVidgLuGiDszzf+8Yj8m0VkwFjwdG0t1hiPS68iyvRTOlHor5XpAujV5B54I8b/U KqCKNeP3nmmipDHllFGA1Oy90+zIJRviOzcj/1C76qFHnB/SRgu7oIfM1C6pj4eJWBrkGauy0cQvo uDmDL0GlGahTmVCV51wo1Qxf45ZIq8Y56n8aIlYtd0OmdKC+lr3eHn5TSHLz0O1/Hqb9+hgjZkHXu 9LBLgTgkrssALymm1oMQraB0dkZE3Jltr1nOk0lNVn9fF4hqpQL4Bvbdj+zFdEa8VakmWens0/Qt3 3rXnV6Tg==; Received: from dfw.source.kernel.org ([2604:1380:4641:c500::1]) by desiato.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1pDQaz-001MD9-2X for linux-arm-kernel@lists.infradead.org; Thu, 05 Jan 2023 13:47:51 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 7DFD261AAF; Thu, 5 Jan 2023 13:47:54 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 68B0FC433F1; Thu, 5 Jan 2023 13:47:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672926474; bh=QBATBldnH97j5a6wP3U8v0ZSqqSKFF/ptzvMtMvWpXk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nvnVDZ2vUQM0fzq9itEWzBKAhHayYLScwyZdwppqa16XKQcyNHgYqWfR/RXQ6V+ED wg/S26ahAb0oSb9cgC51u2xkAKAmaam6yIahXRISXtILLQAo1MWg4uQG+fk4h0Mi9m 9CIMyvGlbY3dlzvKMqTIaD0NM0cQoyeq8weFcFRTyTvc2w6qCqSnbKMz9sHHgBMGCo yfJr5ZdOCIQmNaczYJGMaOcSr/sh5fwcDWbusTVKZniMnOTgtS7IVmJLJ0DqROys+w UKtyUHzuh8yYXorHO1hHCFLcEBsxEaC9EEzzyldSnGqbYI2smDTlvQvPl0rihRDSKl fERV8ww6lKz/Q== From: Arnd Bergmann To: Robert Jarzmik Cc: Daniel Mack , Haojian Zhuang , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Arnd Bergmann , Lee Jones , Philipp Zabel Subject: [PATCH 27/27] mfd: remove htc-pasic3 driver Date: Thu, 5 Jan 2023 14:46:22 +0100 Message-Id: <20230105134622.254560-28-arnd@kernel.org> X-Mailer: git-send-email 2.39.0 In-Reply-To: <20230105134622.254560-1-arnd@kernel.org> References: <20230105134622.254560-1-arnd@kernel.org> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230105_134750_159662_496D5B3B X-CRM114-Status: GOOD ( 15.89 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Arnd Bergmann The htc-pasic3 MFD device was only used in the PXA magician machine that is now removed, so this can be recycled as well. Cc: Lee Jones Cc: Philipp Zabel Signed-off-by: Arnd Bergmann --- drivers/mfd/Kconfig | 9 -- drivers/mfd/Makefile | 2 - drivers/mfd/htc-pasic3.c | 210 --------------------------------- include/linux/mfd/htc-pasic3.h | 54 --------- 4 files changed, 275 deletions(-) delete mode 100644 drivers/mfd/htc-pasic3.c delete mode 100644 include/linux/mfd/htc-pasic3.h diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 5ea07a65f150..5c24841e5699 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -541,15 +541,6 @@ config MFD_HI655X_PMIC help Select this option to enable Hisilicon hi655x series pmic driver. -config HTC_PASIC3 - tristate "HTC PASIC3 LED/DS1WM chip support" - select MFD_CORE - help - This core driver provides register access for the LED/DS1WM - chips labeled "AIC2" and "AIC3", found on HTC Blueangel and - HTC Magician devices, respectively. Actual functionality is - handled by the leds-pasic3 and ds1wm drivers. - config MFD_INTEL_QUARK_I2C_GPIO tristate "Intel Quark MFD I2C GPIO" depends on PCI diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile index 4969ea6e24f1..09712495f4f4 100644 --- a/drivers/mfd/Makefile +++ b/drivers/mfd/Makefile @@ -17,8 +17,6 @@ obj-$(CONFIG_MFD_ENE_KB3930) += ene-kb3930.o obj-$(CONFIG_MFD_EXYNOS_LPASS) += exynos-lpass.o obj-$(CONFIG_MFD_GATEWORKS_GSC) += gateworks-gsc.o -obj-$(CONFIG_HTC_PASIC3) += htc-pasic3.o - obj-$(CONFIG_MFD_TI_LP873X) += lp873x.o obj-$(CONFIG_MFD_TI_LP87565) += lp87565.o obj-$(CONFIG_MFD_TI_AM335X_TSCADC) += ti_am335x_tscadc.o diff --git a/drivers/mfd/htc-pasic3.c b/drivers/mfd/htc-pasic3.c deleted file mode 100644 index 0c46b7e64b2d..000000000000 diff --git a/include/linux/mfd/htc-pasic3.h b/include/linux/mfd/htc-pasic3.h deleted file mode 100644 index 3d3ed67bd969..000000000000 -- 2.39.0 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel