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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E6AB0C433FE for ; Wed, 6 Oct 2021 08:30:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 91972610FB for ; Wed, 6 Oct 2021 08:30:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237729AbhJFIcZ (ORCPT ); Wed, 6 Oct 2021 04:32:25 -0400 Received: from mx0b-001ae601.pphosted.com ([67.231.152.168]:7242 "EHLO mx0b-001ae601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237670AbhJFIcY (ORCPT ); Wed, 6 Oct 2021 04:32:24 -0400 Received: from pps.filterd (m0077474.ppops.net [127.0.0.1]) by mx0b-001ae601.pphosted.com (8.16.1.2/8.16.1.2) with SMTP id 1966TObt019907; Wed, 6 Oct 2021 03:29:27 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cirrus.com; h=date : from : to : cc : subject : message-id : references : mime-version : content-type : in-reply-to; s=PODMain02222019; bh=VYqS9ly4HxjYNM8Rb95ALzINC4C51eNq0bBG/A9hunw=; b=o0LXPBg9O/lVVWpIotmtJzmIjT495DOgkYZo/xT0o0i+AqnVpPm5nRqb8f3PGAj/azpd h0JZ2ctVu9fICGPR9SG2SJjA6HtyX4QQ5POth+QmzSNU/aFWEa/yo2lqqnQLbr2jrMD+ 4QQr6ELWHy6H0pnSSwQUSyHy9zkLeI9Rg6QinhB+SAW1Xtwp6Fhtw/y+lw2zJCwtkIcx 08ZcykFEw6P4IvGY7ZAsHMXqN43Q+ZitP8gEI4RihERP7P4lgxtl2jhqNZdRnWoCdBqe yjj/gzmuX3FFtBmBtG0nVFurJXrDAPkHnj/TDTPyJxd9kyQuYnZR38ZzUz/v04lA1dgm YQ== Received: from ediex02.ad.cirrus.com ([87.246.76.36]) by mx0b-001ae601.pphosted.com with ESMTP id 3bgrreh1qv-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT); Wed, 06 Oct 2021 03:29:27 -0500 Received: from EDIEX01.ad.cirrus.com (198.61.84.80) by EDIEX02.ad.cirrus.com (198.61.84.81) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2242.12; Wed, 6 Oct 2021 09:29:25 +0100 Received: from ediswmail.ad.cirrus.com (198.61.86.93) by EDIEX01.ad.cirrus.com (198.61.84.80) with Microsoft SMTP Server id 15.1.2242.12 via Frontend Transport; Wed, 6 Oct 2021 09:29:25 +0100 Received: from ediswmail.ad.cirrus.com (ediswmail.ad.cirrus.com [198.61.86.93]) by ediswmail.ad.cirrus.com (Postfix) with ESMTP id 47AB6B13; Wed, 6 Oct 2021 08:29:25 +0000 (UTC) Date: Wed, 6 Oct 2021 08:29:25 +0000 From: Charles Keepax To: Arnd Bergmann CC: Bjorn Andersson , Arnd Bergmann , Mark Brown , Liam Girdwood , Simon Trimmer , Michael Ellerman , Russell King , Catalin Marinas , Will Deacon , Thomas Bogendoerfer , "James E.J. Bottomley" , Helge Deller , Paul Walmsley , Palmer Dabbelt , Albert Ou , Thomas Gleixner , Ingo Molnar , Borislav Petkov , , "H. Peter Anvin" , Geert Uytterhoeven , Linus Walleij , Andrew Morton , Greg Kroah-Hartman , , , , , , Subject: Re: [PATCH 1/2] firmware: include drivers/firmware/Kconfig unconditionally Message-ID: <20211006082925.GK9223@ediswmail.ad.cirrus.com> References: <20210928075216.4193128-1-arnd@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20210928075216.4193128-1-arnd@kernel.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Proofpoint-ORIG-GUID: cBaf488JNMuKplb9_5hsQVXi838DWVHi X-Proofpoint-GUID: cBaf488JNMuKplb9_5hsQVXi838DWVHi X-Proofpoint-Spam-Reason: safe Precedence: bulk List-ID: X-Mailing-List: linux-mips@vger.kernel.org On Tue, Sep 28, 2021 at 09:50:26AM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann > > Compile-testing drivers that require access to a firmware layer > fails when that firmware symbol is unavailable. This happened > twice this week: > > - My proposed to change to rework the QCOM_SCM firmware symbol > broke on ppc64 and others. > > - The cs_dsp firmware patch added device specific firmware loader > into drivers/firmware, which broke on the same set of > architectures. > > We should probably do the same thing for other subsystems as well, > but fix this one first as this is a dependency for other patches > getting merged. > > Cc: Mark Brown > Cc: Liam Girdwood > Cc: Charles Keepax > Cc: Simon Trimmer > Cc: Arnd Bergmann > Cc: Michael Ellerman > Signed-off-by: Arnd Bergmann > --- Reviewed-by: Charles Keepax Thanks, Charles