From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751287AbeACSx2 (ORCPT + 1 other); Wed, 3 Jan 2018 13:53:28 -0500 Received: from mga09.intel.com ([134.134.136.24]:22842 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751029AbeACSxZ (ORCPT ); Wed, 3 Jan 2018 13:53:25 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,503,1508828400"; d="scan'208";a="17229958" Subject: Re: [PATCH v2 0/9] ASoC: Intel: Kconfig+acpi fixes To: Andy Shevchenko , alsa-devel@alsa-project.org Cc: tiwai@suse.de, broonie@kernel.org, torvalds@linux-foundation.org, vinod.koul@intel.com, liam.r.girdwood@linux.intel.com, arnd@arndb.de, linux-kernel@vger.kernel.org References: <20180103165022.4984-1-pierre-louis.bossart@linux.intel.com> <1514999340.7000.597.camel@linux.intel.com> From: Pierre-Louis Bossart Message-ID: <88a3511c-b3c5-9a92-8d31-33bc1619427b@linux.intel.com> Date: Wed, 3 Jan 2018 12:52:22 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <1514999340.7000.597.camel@linux.intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On 01/03/2018 11:09 AM, Andy Shevchenko wrote: > On Wed, 2018-01-03 at 10:50 -0600, Pierre-Louis Bossart wrote: >> The first patch solves issues reported by 0day with non-ACPI platforms >> >> The second patch implements what Linus, Takashi and Mark >> requested: a top-level selector defaulting to 'y' to easily filter all >> other options and with no impact on code generation. There should be >> no >> functionality change and will avoid breaking audio for people using >> make oldnoconfig. >> >> The rest of the patch series does a more in-depth cleanup. It was >> tested >> on Baytrail/Cherrytrail/Skylake platforms with no regressions >> observed and no reports of any compilation issues with 0-day or >> randconfig. >> >> The 5th patch is really the most important one, there were nested >> configs which made no sense to me. I don't know the history which led >> to such complicated stuff but simpler is better. >> >> Patches 6..7 are just clean-ups of the machine driver configs, >> for some reason there is no consistency in the settings so I tried to >> apply common sense and use the same rules. At Andy Shevchenko's >> suggestion, >> I also replaced the broken dependency on X86_INTEL_LPSS by >> MFD_INTEL_LPSS >> for Skylake+ machines. No regressions were identified with this >> change. >> >> Patch 9 is new in this series and are just cosmetic changes (comments >> and text simplification). >> >> Thanks to Vinod Koul for his contributions and comments. > Couple of nitpicks and seems patch 9 missed some (all?) comments to be > addressed. > > So, after fixing them: > > Reviewed-by: Andy Shevchenko Thanks Andy for the quick review. the last patch is new and indeed could be cleaned-up further, will send a v3. > >> Changes since v1: >> fixed more 0-day warnings for e.g. s390 non-ACPI compilation >> fixed use of depends >> fixed use of CONFIG_ >> fixed indentations as needed >> simplified text and comments >> >> Changes since RFCv2: >> Moved machine drivers to submenu >> Dropped SND_SOC_INTEL_COMMON since it was not needed >> Added more comments for if/endif >> Simplified text for options (dropped "ASoC Intel driver....") >> Fixed one 0-day warning >> >> Changes since initial RFC: >> Removed default n >> Added help text for HASWELL, BAYTRAIL (legacy) and SKYLAKE options >> Made top level machine driver selection dependent on >> INTEL_SST_TOPLEVEL. >> Added help text for PCI and HIFI2 platforms >> Replaced X86_INTEL_LPSS by MFD_INTEL_LPSS for Skylake+ devices >> Fixed a couple of indentation issues >> >> Pierre-Louis Bossart (8): >> ASoC: acpi: add missing includes for non-ACPI platforms >> ASoC: Intel: Fix Kconfig with top-level selector >> ASoC: Intel: Kconfig: Simplify-clarify ACPI/PCI dependencies >> ASoC: Intel: document what Kconfig options do >> ASoC: Intel: Fix nested/unnecessary Kconfig dependencies >> ASoC: Intel: boards: align Kconfig dependencies for >> Haswell/Broadwell >> ASoC: Intel: boards: align Kconfig configurations for HiFi2 >> ASoC: Intel: boards: align/fix SKL/BXT/KBL Kconfigs >> >> Vinod Koul (1): >> ASoC: Intel: kconfig: add some comments for if symbols >> >> include/sound/soc-acpi-intel-match.h | 1 + >> include/sound/soc-acpi.h | 1 + >> sound/soc/intel/Kconfig | 116 +++++++++++++++------ >> sound/soc/intel/Makefile | 2 +- >> sound/soc/intel/boards/Kconfig | 191 ++++++++++++++++++------ >> ----------- >> 5 files changed, 186 insertions(+), 125 deletions(-) >>