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 336DEC6FA89 for ; Tue, 13 Sep 2022 10:01:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231338AbiIMKBB (ORCPT ); Tue, 13 Sep 2022 06:01:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49764 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231406AbiIMKA4 (ORCPT ); Tue, 13 Sep 2022 06:00:56 -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 6A0C4356C1; Tue, 13 Sep 2022 03:00:54 -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 086C261376; Tue, 13 Sep 2022 10:00:54 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5E3A6C4314A; Tue, 13 Sep 2022 10:00:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1663063253; bh=FxlTTbRW/PHWQLM1GoFV+cyBk7DG7ySc4dceL+AbcAA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=m36TKF+Od7aovmLVkhd6VzfaQH3QQPFD2jJIjUB1cTBbWhHGsAVbHjILijA9zEFGq t+CNJvwqRiS06ZSs/43Jk/ZMRe7/g9Rs8GSLNx7UJSviH66AzmkOAGBCE/e/CB157t HnAwO4JmfoODZJcMnxSca+unDNZQKQrJGV2BYLowEvMHZakmLNFmkmaoteSLrMCl9O vS87clT1cmNLUsluCbV89hmWkDKQFvxIVt97ldS5cBN2oWO3cYjnZs8h+uYwVgEMFm pK8MRozpi3QAvAiZUWFgKq3gFmXt6a42/zRptKaAHa28I95oDpLEb5ZoWMc0fBcP4x vxPpCfF0k18xg== Received: from johan by xi.lan with local (Exim 4.94.2) (envelope-from ) id 1oY2iq-0005VP-G7; Tue, 13 Sep 2022 12:00:52 +0200 Date: Tue, 13 Sep 2022 12:00:52 +0200 From: Johan Hovold To: Manivannan Sadhasivam Cc: bjorn.andersson@linaro.org, konrad.dybcio@somainline.org, krzysztof.kozlowski+dt@linaro.org, linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, johan+linaro@kernel.org, steev@kali.org Subject: Re: [PATCH] arm64: dts: qcom: thinkpad-x13s: Update firmware location Message-ID: References: <20220913054030.3234-1-manivannan.sadhasivam@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220913054030.3234-1-manivannan.sadhasivam@linaro.org> Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org On Tue, Sep 13, 2022 at 11:10:30AM +0530, Manivannan Sadhasivam wrote: > The firmware location in linux-firmware has been changed to include the > SoC name. So use the updated location in Thinkpad devicetree. > > Signed-off-by: Manivannan Sadhasivam > --- > arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) I guess we should pick a commit prefix that we stick to for changes to this driver. arm64: dts: qcom: sc8280xp-lenovo-thinkpad-x13s: is arguably unnecessarily long even if it follows the pattern of some other qcom dts. Shall we just use arm64: dts: qcom: sc8280xp-x13s: which matches sc8280xp-crd? Or stick "lenovo" in there as well? Or just keep the whole thing unchanged? > diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts b/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts > index c379650e52b1..3b7943d6e164 100644 > --- a/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts > +++ b/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts > @@ -554,13 +554,13 @@ keyboard@68 { > }; > > &remoteproc_adsp { > - firmware-name = "qcom/LENOVO/21BX/qcadsp8280.mbn"; > + firmware-name = "qcom/sc8280xp/LENOVO/21BX/qcadsp8280.mbn"; > > status = "okay"; > }; > > &remoteproc_nsp0 { > - firmware-name = "qcom/LENOVO/21BX/qccdsp8280.mbn"; > + firmware-name = "qcom/sc8280xp/LENOVO/21BX/qccdsp8280.mbn"; > > status = "okay"; > }; Change itself looks good otherwise: Reviewed-by: Johan Hovold Johan