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 AFA93C636D4 for ; Fri, 10 Feb 2023 23:26:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229727AbjBJX0T (ORCPT ); Fri, 10 Feb 2023 18:26:19 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35482 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229703AbjBJX0R (ORCPT ); Fri, 10 Feb 2023 18:26:17 -0500 Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 09161B5; Fri, 10 Feb 2023 15:26:16 -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 sin.source.kernel.org (Postfix) with ESMTPS id 59ED9CE28B9; Fri, 10 Feb 2023 23:26:15 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8B079C433D2; Fri, 10 Feb 2023 23:26:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1676071572; bh=oPttgO5jXm2lZqDZTv/NVSsliVIw12bDAtzJ2u0WYDU=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=ccTLGnQyaiWPK7wgM4cpPhG7g5atjTnZ7AyC6BJz5FjxgGN/pioNGiJbVUQDymgKQ HRNOS7A/3cv38IIr3LXR2EDx64Ou5zPna9ORWaZu/fabjfH+lPDoavZLNixZgWRlP7 qEfgbv6qvL4KD0F2MuaiH7sa8R7YOUuK1UI78sU3Appi0NKRlB9byM0UEy4kgv8Y6F u65NdHyiB9XGHAkR10SnGfQpUJwS8H9JSkml1zfZzAKCQ01AG2FE4v4VMhuh7tEN12 sZHWnlRuRFWBsmzONqQVMhw/bIF05Eb0jg/B9hdYM7XT5rn6CJZ6JCvOFqb5Feuzs3 LVRA9Nv0AbDaQ== Message-ID: <347b0935e825770ebd7ebc52274708dc.sboyd@kernel.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20221215165836.2136448-1-arnd@kernel.org> References: <20221215165836.2136448-1-arnd@kernel.org> Subject: Re: [PATCH] clk: imx: fix compile testing imxrt1050 From: Stephen Boyd Cc: Arnd Bergmann , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Peng Fan , Jesse Taube , Giulio Benetti , Dario Binacchi , linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org To: Abel Vesa , Arnd Bergmann , Michael Turquette , Sascha Hauer , Shawn Guo Date: Fri, 10 Feb 2023 15:26:10 -0800 User-Agent: alot/0.10 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Quoting Arnd Bergmann (2022-12-15 08:58:18) > From: Arnd Bergmann >=20 > Randconfig testing revealed multiple issues with this driver: >=20 > ERROR: modpost: missing MODULE_LICENSE() in drivers/clk/imx/clk-imxrt1050= .o > ERROR: modpost: "imx_clk_hw_pllv3" [drivers/clk/imx/clk-imxrt1050.ko] und= efined! > ERROR: modpost: "imx_clk_hw_pfd" [drivers/clk/imx/clk-imxrt1050.ko] undef= ined! >=20 > Export the necessary symbols from the core clk driver and add the > license and author tags. To find this type of problem more easily > in the future, also enable building on other platforms, as we do for > the other i.MX clk drivers. >=20 > Signed-off-by: Arnd Bergmann > --- Applied to clk-next