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 4D772C25B50 for ; Mon, 23 Jan 2023 10:35:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231690AbjAWKfl (ORCPT ); Mon, 23 Jan 2023 05:35:41 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55414 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229549AbjAWKfj (ORCPT ); Mon, 23 Jan 2023 05:35:39 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2E9C018A8E; Mon, 23 Jan 2023 02:35:39 -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 ams.source.kernel.org (Postfix) with ESMTPS id D17B1B80CD9; Mon, 23 Jan 2023 10:35:37 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 75F17C433D2; Mon, 23 Jan 2023 10:35:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1674470136; bh=cwgjiZMHeWlRTUJMa1Sto/LlD87GW58nOIMtlWblOws=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=dVWOVXpxFMYdsKAMVDj2Nt7LFfqN1qd4uABeSArl2kw5YRXNKpzb3MMFZKplSPlqA VpYQVrFyFWqjbj9JT6aTTmO4m+1e8zvJwlCZy0F6d0WaeTDxE7FERRHK5kB1ReeOcz 3hQe8Fya2d3/Tj4PuUR2rPC+iOFPigExWkQ366YAdmMZ4DZ8nH7KfNSaMXvMNB5Cvw 0w8GBhCPnDPInyOwh3k6zp5B/u6Fqx/cW/rZdM8J2Dq3EuNkCRmkQkO549xb8JOCwb hG+7tqZrLG2vVFBparVGXPU19ICkwlz54vxJz5fjn62Fq6uFbC8+TsRgiY4JkTnuDC MGff9eEy2Jk+g== Received: from johan by xi.lan with local (Exim 4.94.2) (envelope-from ) id 1pJuAn-0000oI-65; Mon, 23 Jan 2023 11:35:33 +0100 Date: Mon, 23 Jan 2023 11:35:33 +0100 From: Johan Hovold To: Stephen Boyd Cc: Vinod Koul , Kishon Vijay Abraham I , linux-kernel@vger.kernel.org, patches@lists.linux.dev, linux-arm-msm@vger.kernel.org, linux-phy@lists.infradead.org, Dmitry Baryshkov , Johan Hovold Subject: Re: [PATCH] phy: qcom-qmp: Introduce Kconfig symbols for discrete drivers Message-ID: References: <20230114000910.1256462-1-swboyd@chromium.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230114000910.1256462-1-swboyd@chromium.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jan 13, 2023 at 04:09:10PM -0800, Stephen Boyd wrote: > Introduce a config option for each QMP PHY driver now that the QMP PHY > mega-driver has been split up into different modules. This allows kernel > configurators to limit the binary size of the kernel by only compiling > in the QMP PHY driver that they need, or to split the module up into one > per PHY driver instead of one module for all the QMP PHY drivers. Nit: The drivers are already built as separate modules even if they can currently only be enabled together. > Leave the old config QCOM_QMP in place and make it into a menuconfig so > that 'make olddefconfig' continues to work. Furthermore, set the default > of the new Kconfig symbols to be QCOM_QMP so that the transition is > smooth. Perhaps this should go eventually. > Cc: Dmitry Baryshkov > Cc: Johan Hovold > Signed-off-by: Stephen Boyd Looks good otherwise: Reviewed-by: Johan Hovold Johan