From patchwork Thu Aug 18 13:55:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 598429 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 1D48FC25B0E for ; Thu, 18 Aug 2022 13:56:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S245391AbiHRN4m (ORCPT ); Thu, 18 Aug 2022 09:56:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54222 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S245396AbiHRN4X (ORCPT ); Thu, 18 Aug 2022 09:56:23 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2DD58B7284; Thu, 18 Aug 2022 06:55:40 -0700 (PDT) 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 C1AFE616F4; Thu, 18 Aug 2022 13:55:39 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4D466C433D6; Thu, 18 Aug 2022 13:55:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1660830939; bh=fHzcBNlzGIZpl1xhXWFZNUDkhjIsfNqXuL0NTcnbSpk=; h=From:To:Cc:Subject:Date:From; b=a1Rz0rDFPWuA7x8HY71a9klDTS7phrO7CnzcNYqrI/L2GvFT+RZWZyoewgnd3RMoG 3V1zaan4Wz2R1xAXJ5Pvrwoi9ky/RDZGOzCFsMhiIVd11yOr3RIr25wBN5VyaAVJUX cMyEaaJGETJ/OS892Rjm1jP7uo02MXutvpbI7b30rOaNWAgSoKnZ/XuLBvVUH0OuMq buenYGD5g12Wtfp3Jh+iPkwxWxUj1UDyvXSTpK11YHA+JcXOQC/ZC6i+HIVtMRema+ XERxdZknt9iTB3KXMzp0sz8ZSvkWFS2BVNNEmzz09TETaH0JS0MvNCskXudG5AQWiq Wgl/naXAHsAZA== From: Arnd Bergmann To: linux-arm-kernel@lists.infradead.org Cc: Arnd Bergmann , Russell King , Nicolas Ferre , Alexandre Belloni , Claudiu Beznea , Krzysztof Kozlowski , Alim Akhtar , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Vladimir Zapolskiy , Liviu Dudau , Sudeep Holla , Lorenzo Pieralisi , Andrew Lunn , Gregory Clement , Sebastian Hesselbarth , Aaro Koskinen , Janusz Krzysztofik , Tony Lindgren , Geert Uytterhoeven , Magnus Damm , Dinh Nguyen , Qin Jian , Maxime Coquelin , Alexandre Torgue , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , Thierry Reding , Jonathan Hunter , Bin Liu , Greg Kroah-Hartman , Tudor Ambarus , Mark Brown , Linus Walleij , =?utf-8?q?=C5=81ukasz_Stelmach?= , Laurent Pinchart , Randy Dunlap , Vladimir Oltean , Richard Cochran , Jakub Kicinski , Shannon Nelson , Peter Chen , Stefan Wahren , Felipe Balbi , linux-kernel@vger.kernel.org, linux-samsung-soc@vger.kernel.org, linux-omap@vger.kernel.org, linux-renesas-soc@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-sunxi@lists.linux.dev, linux-tegra@vger.kernel.org, linux-usb@vger.kernel.org Subject: [PATCH 00/11] ARM: defconfig cleanup Date: Thu, 18 Aug 2022 15:55:21 +0200 Message-Id: <20220818135522.3143514-1-arnd@kernel.org> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org From: Arnd Bergmann I have continued the cleanup of the multi_*_defconfig files, and reordered the other files according to the 'make savedefconfig' output as before. I would like to queue these up for 6.1, though the last two should probably be considered bugfixes and merged for 6.0. Since a third of the defconfig files are for machines that are now marked as unused, I skipped those files. There are still a few things that get removed by 'make savedefconfig' as they now get selected by some driver: -CONFIG_SERIAL_BCM63XX=y -CONFIG_SND_AUDIO_GRAPH_CARD=m -CONFIG_NEW_LEDS=y -CONFIG_LEDS_TRIGGERS=y -CONFIG_TEGRA20_APB_DMA=y I think for those we should follow up with patches to remove the 'select' statements. Arnd Cc: Russell King Cc: Nicolas Ferre Cc: Alexandre Belloni Cc: Claudiu Beznea Cc: Krzysztof Kozlowski Cc: Alim Akhtar Cc: Shawn Guo Cc: Sascha Hauer Cc: Pengutronix Kernel Team Cc: Fabio Estevam Cc: NXP Linux Team Cc: Vladimir Zapolskiy Cc: Liviu Dudau Cc: Sudeep Holla Cc: Lorenzo Pieralisi Cc: Andrew Lunn Cc: Gregory Clement Cc: Sebastian Hesselbarth Cc: Aaro Koskinen Cc: Janusz Krzysztofik Cc: Tony Lindgren Cc: Geert Uytterhoeven Cc: Magnus Damm Cc: Dinh Nguyen Cc: Qin Jian Cc: Maxime Coquelin Cc: Alexandre Torgue Cc: Chen-Yu Tsai Cc: Jernej Skrabec Cc: Samuel Holland Cc: Thierry Reding Cc: Jonathan Hunter Cc: Bin Liu Cc: Greg Kroah-Hartman Cc: Tudor Ambarus Cc: Mark Brown Cc: Linus Walleij Cc: "Ɓukasz Stelmach" Cc: Laurent Pinchart Cc: Randy Dunlap Cc: Vladimir Oltean Cc: Richard Cochran Cc: Jakub Kicinski Cc: Shannon Nelson Cc: Peter Chen Cc: Stefan Wahren Cc: Felipe Balbi Cc: linux-arm-kernel@lists.infradead.org Cc: linux-kernel@vger.kernel.org Cc: linux-samsung-soc@vger.kernel.org Cc: linux-omap@vger.kernel.org Cc: linux-renesas-soc@vger.kernel.org Cc: linux-stm32@st-md-mailman.stormreply.com Cc: linux-sunxi@lists.linux.dev Cc: linux-tegra@vger.kernel.org Cc: linux-usb@vger.kernel.org Arnd Bergmann (11): ARM: defconfig: reorder defconfig files ARM: defconfig: clean up multi_v4t and multi_v5 configs ARM: defconfig: drop CONFIG_NET_VENDOR_ASIX=y ARM: defconfig: drop CONFIG_SERIAL_OMAP references ARM: defconfig: drop CONFIG_DRM_RCAR_LVDS ARM: defconfig: drop CONFIG_PTP_1588_CLOCK=y ARM: defconfig: drop CONFIG_SND_SOC_FSL_SAI ARM: defconfig: drop CONFIG_USB_FSL_USB2 ARM: defconfig: drop CONFIG_MICROCHIP_PIT64B ARM: defconfig: fix CONFIG_SND_SOC_AC97_CODEC name musb: fix USB_MUSB_TUSB6010 dependency arch/arm/configs/at91_dt_defconfig | 2 +- arch/arm/configs/dove_defconfig | 2 +- arch/arm/configs/exynos_defconfig | 2 +- arch/arm/configs/imx_v6_v7_defconfig | 2 +- arch/arm/configs/keystone_defconfig | 7 +++---- arch/arm/configs/lpc18xx_defconfig | 2 +- arch/arm/configs/mmp2_defconfig | 2 +- arch/arm/configs/mps2_defconfig | 2 +- arch/arm/configs/multi_v4t_defconfig | 2 -- arch/arm/configs/multi_v5_defconfig | 3 +-- arch/arm/configs/multi_v7_defconfig | 22 +++++++--------------- arch/arm/configs/mvebu_v5_defconfig | 2 +- arch/arm/configs/mxs_defconfig | 4 ++-- arch/arm/configs/omap1_defconfig | 2 +- arch/arm/configs/omap2plus_defconfig | 7 ++----- arch/arm/configs/orion5x_defconfig | 2 +- arch/arm/configs/pxa168_defconfig | 2 +- arch/arm/configs/pxa910_defconfig | 2 +- arch/arm/configs/pxa_defconfig | 2 +- arch/arm/configs/s3c6400_defconfig | 2 +- arch/arm/configs/s5pv210_defconfig | 2 +- arch/arm/configs/sama5_defconfig | 6 +++--- arch/arm/configs/sama7_defconfig | 4 ++-- arch/arm/configs/shmobile_defconfig | 2 +- arch/arm/configs/socfpga_defconfig | 6 +++--- arch/arm/configs/sp7021_defconfig | 2 +- arch/arm/configs/spear13xx_defconfig | 2 +- arch/arm/configs/spear3xx_defconfig | 2 +- arch/arm/configs/spear6xx_defconfig | 2 +- arch/arm/configs/stm32_defconfig | 2 +- arch/arm/configs/sunxi_defconfig | 2 +- arch/arm/configs/tegra_defconfig | 2 +- arch/arm/configs/vexpress_defconfig | 2 +- drivers/usb/musb/Kconfig | 2 +- 34 files changed, 48 insertions(+), 63 deletions(-) Reviewed-by: Claudiu Beznea Acked-by: Jernej Skrabec