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 65A02C3DA7D for ; Thu, 5 Jan 2023 13:50:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233992AbjAENub (ORCPT ); Thu, 5 Jan 2023 08:50:31 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33362 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231631AbjAENto (ORCPT ); Thu, 5 Jan 2023 08:49:44 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D5E8A5E08C; Thu, 5 Jan 2023 05:47:54 -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 B670161A7F; Thu, 5 Jan 2023 13:47:47 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E5112C433F1; Thu, 5 Jan 2023 13:47:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672926467; bh=4+rvH120BWpGoGjg3AEEzrUBIcxOEWqmOQBFI731bX8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sxHrsghkOYPO7e6eh6XFmq1/IOZqKAgjuX1UEwB89y0ZM6Wv8IMmrNZPbA8lnpQOk fuoJ0p1C09jXJ6+6Qn5EQ8VitAhQr+NtiQKwzMNf2kr5SRDMiYlWZpJBva8jVdHetV B6z13E94vc2kV5mMkx2S/HbXHMu2g0Sawn1KOO+T4rEuuhTpICC0bEp4JkZuYbKwSD VJhxdFN1Ninhe26fadcorrI7AfVJpmP0rwsmD0bArxsH+h950L5l9yr3b1Z/8/YnG1 TbAGpRiYsIlEaAlW/6tM/SvYDd9YMbqkl/6kcJfNaYia7peKGUnZQGLgTZ6ChvvfuN BWdRBqphYG9tg== From: Arnd Bergmann To: Robert Jarzmik Cc: Daniel Mack , Haojian Zhuang , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Arnd Bergmann , Paul Parsons , Pavel Machek , Lee Jones , linux-leds@vger.kernel.org Subject: [PATCH 24/27] leds: remove asic3 driver Date: Thu, 5 Jan 2023 14:46:19 +0100 Message-Id: <20230105134622.254560-25-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-leds@vger.kernel.org From: Arnd Bergmann Since ASIC3 MFD driver is removed, the LED support is also obsolete. Cc: Paul Parsons Cc: Pavel Machek Cc: Lee Jones Cc: linux-leds@vger.kernel.org Signed-off-by: Arnd Bergmann --- drivers/leds/Kconfig | 11 --- drivers/leds/Makefile | 1 - drivers/leds/leds-asic3.c | 177 -------------------------------------- 3 files changed, 189 deletions(-) delete mode 100644 drivers/leds/leds-asic3.c diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig index be2eeb3d6fd3..9dbce09eabac 100644 --- a/drivers/leds/Kconfig +++ b/drivers/leds/Kconfig @@ -623,17 +623,6 @@ config LEDS_NETXBIG and 5Big Network v2 boards. The LEDs are wired to a CPLD and are controlled through a GPIO extension bus. -config LEDS_ASIC3 - bool "LED support for the HTC ASIC3" - depends on LEDS_CLASS=y - depends on MFD_ASIC3 - default y - help - This option enables support for the LEDs on the HTC ASIC3. The HTC - ASIC3 LED GPIOs are inputs, not outputs, thus the leds-gpio driver - cannot be used. This driver supports hardware blinking with an on+off - period from 62ms to 125s. Say Y to enable LEDs on the HP iPAQ hx4700. - config LEDS_TCA6507 tristate "LED Support for TCA6507 I2C chip" depends on LEDS_CLASS && I2C diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile index a790c967fce9..d30395d11fd8 100644 --- a/drivers/leds/Makefile +++ b/drivers/leds/Makefile @@ -14,7 +14,6 @@ obj-$(CONFIG_LEDS_ADP5520) += leds-adp5520.o obj-$(CONFIG_LEDS_AN30259A) += leds-an30259a.o obj-$(CONFIG_LEDS_APU) += leds-apu.o obj-$(CONFIG_LEDS_ARIEL) += leds-ariel.o -obj-$(CONFIG_LEDS_ASIC3) += leds-asic3.o obj-$(CONFIG_LEDS_AW2013) += leds-aw2013.o obj-$(CONFIG_LEDS_BCM6328) += leds-bcm6328.o obj-$(CONFIG_LEDS_BCM6358) += leds-bcm6358.o diff --git a/drivers/leds/leds-asic3.c b/drivers/leds/leds-asic3.c deleted file mode 100644 index 8cbc1b8bafa5..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 A9D5DC3DA7A for ; Thu, 5 Jan 2023 22:55:14 +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=VEJbvJFkKG9ydyxeRzOTbBSzB3iM8aehw6OA7mq/HSA=; b=w4Oe1nH3uNeYrW 7CqhUQuxr6Dtpcd6Qp1GwgBrkljnNyTrfZzLilNLVKVf0WamLrWni4pPZqIAXCsIlBYqWXX48ZdgV JurBKX2Va3KnFc4CN/pFW8as5am3M46wRS6v6Hb4mLlateEtpZt9hi6jKn1m9xd7xcP6ohqBOmqmU 32bB1VJZptSzDe23m5QN0sOczbSeCr6KdE3Y5SYDZDM2eIdKjRQhjEJ8xLX0kwCPwqNqHb4Lln97O voVzOoLDQ8bRBCYiHoYTweGHW1s6o4f+dnGg7WgA16p47yXQU5wFu80HYEUU9uVa6UtvT/uQv819I yDxmkc3psWGmdr5wCMww==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pDZ7j-00FpJM-W4; Thu, 05 Jan 2023 22:54: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 1pDVPB-00Dslk-Uc for linux-arm-kernel@bombadil.infradead.org; Thu, 05 Jan 2023 18:55:57 +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=yuVslCfesg03EE2pGWj3NR/K8FNmn3d0HaxKMVAUwHc=; b=aK4/65PDQFrVtOgfXzNW3IK19s D+E5DThzNHRHipfTvf11ILmB5jpkM3n5mgGSUISPbXAaqmsSneM/VXl13pVz84INxcV18c5AinKQD tifQRTgXVZ7t2uN45dq9/oQBgo7QNfQtKLer2XHDkLF7RoFzqHOXPN2DVOzJ6YMKyR60tR56Ksmze 4+wW/Glm8XHFM7E78FoFNikakI2fhO6uoq90GYp0Fb7lOdgJv/PzgFudDnqYJWRkn1XavrhlK+SLP 7YTTfRzvptfANWFARijKLrhzjnUsihrCrq72CsmaEKqDZyops5/xra5xGawtxW1fKeLHcHrigxDdy SkrBxKLg==; Received: from dfw.source.kernel.org ([139.178.84.217]) by desiato.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1pDQas-001M9k-1k for linux-arm-kernel@lists.infradead.org; Thu, 05 Jan 2023 13:47:46 +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 50FA161A95; Thu, 5 Jan 2023 13:47:47 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E5112C433F1; Thu, 5 Jan 2023 13:47:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672926467; bh=4+rvH120BWpGoGjg3AEEzrUBIcxOEWqmOQBFI731bX8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sxHrsghkOYPO7e6eh6XFmq1/IOZqKAgjuX1UEwB89y0ZM6Wv8IMmrNZPbA8lnpQOk fuoJ0p1C09jXJ6+6Qn5EQ8VitAhQr+NtiQKwzMNf2kr5SRDMiYlWZpJBva8jVdHetV B6z13E94vc2kV5mMkx2S/HbXHMu2g0Sawn1KOO+T4rEuuhTpICC0bEp4JkZuYbKwSD VJhxdFN1Ninhe26fadcorrI7AfVJpmP0rwsmD0bArxsH+h950L5l9yr3b1Z/8/YnG1 TbAGpRiYsIlEaAlW/6tM/SvYDd9YMbqkl/6kcJfNaYia7peKGUnZQGLgTZ6ChvvfuN BWdRBqphYG9tg== From: Arnd Bergmann To: Robert Jarzmik Cc: Daniel Mack , Haojian Zhuang , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Arnd Bergmann , Paul Parsons , Pavel Machek , Lee Jones , linux-leds@vger.kernel.org Subject: [PATCH 24/27] leds: remove asic3 driver Date: Thu, 5 Jan 2023 14:46:19 +0100 Message-Id: <20230105134622.254560-25-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_134742_752007_DCAC6213 X-CRM114-Status: GOOD ( 16.39 ) 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 Since ASIC3 MFD driver is removed, the LED support is also obsolete. Cc: Paul Parsons Cc: Pavel Machek Cc: Lee Jones Cc: linux-leds@vger.kernel.org Signed-off-by: Arnd Bergmann --- drivers/leds/Kconfig | 11 --- drivers/leds/Makefile | 1 - drivers/leds/leds-asic3.c | 177 -------------------------------------- 3 files changed, 189 deletions(-) delete mode 100644 drivers/leds/leds-asic3.c diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig index be2eeb3d6fd3..9dbce09eabac 100644 --- a/drivers/leds/Kconfig +++ b/drivers/leds/Kconfig @@ -623,17 +623,6 @@ config LEDS_NETXBIG and 5Big Network v2 boards. The LEDs are wired to a CPLD and are controlled through a GPIO extension bus. -config LEDS_ASIC3 - bool "LED support for the HTC ASIC3" - depends on LEDS_CLASS=y - depends on MFD_ASIC3 - default y - help - This option enables support for the LEDs on the HTC ASIC3. The HTC - ASIC3 LED GPIOs are inputs, not outputs, thus the leds-gpio driver - cannot be used. This driver supports hardware blinking with an on+off - period from 62ms to 125s. Say Y to enable LEDs on the HP iPAQ hx4700. - config LEDS_TCA6507 tristate "LED Support for TCA6507 I2C chip" depends on LEDS_CLASS && I2C diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile index a790c967fce9..d30395d11fd8 100644 --- a/drivers/leds/Makefile +++ b/drivers/leds/Makefile @@ -14,7 +14,6 @@ obj-$(CONFIG_LEDS_ADP5520) += leds-adp5520.o obj-$(CONFIG_LEDS_AN30259A) += leds-an30259a.o obj-$(CONFIG_LEDS_APU) += leds-apu.o obj-$(CONFIG_LEDS_ARIEL) += leds-ariel.o -obj-$(CONFIG_LEDS_ASIC3) += leds-asic3.o obj-$(CONFIG_LEDS_AW2013) += leds-aw2013.o obj-$(CONFIG_LEDS_BCM6328) += leds-bcm6328.o obj-$(CONFIG_LEDS_BCM6358) += leds-bcm6358.o diff --git a/drivers/leds/leds-asic3.c b/drivers/leds/leds-asic3.c deleted file mode 100644 index 8cbc1b8bafa5..000000000000 -- 2.39.0 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel