Message ID | 20240805095842.277792-1-prabhakar.mahadev-lad.rj@bp.renesas.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | clk: renesas: rzv2h-cpg: Fix undefined reference to r9a09g057_cpg_info | expand |
Hi Prabhakar, On Mon, Aug 5, 2024 at 11:58 AM Prabhakar <prabhakar.csengg@gmail.com> wrote: > From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> > > Address randconfig build issue where the linker reports an undefined > reference to `r9a09g057_cpg_info`. The error occurs when > CONFIG_CLK_R9A09G057 is not defined, leading to the inclusion of the > device match entry without the corresponding data. By adding a > preprocessor condition to the device match table, the entry for > r9a09g057 is included only when CONFIG_CLK_R9A09G057 is defined, thus > resolving the linker error. > > Error message: > /usr/bin/ld: warning: .tmp_vmlinux1 has a LOAD segment with RWX permissions > >> /usr/bin/ld: drivers/clk/renesas/rzv2h-cpg.o:(.rodata+0xc0): undefined reference to `r9a09g057_cpg_info' > clang-14: error: linker command failed with exit code 1 (use -v to see invocation) > > Reported-by: kernel test robot <lkp@intel.com> > Closes: https://lore.kernel.org/oe-kbuild-all/202408040932.SqrqyXGU-lkp@intel.com/ > Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Fixes: 42b54d52ecb7a819 ("clk: renesas: Add RZ/V2H(P) CPG driver") Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> As the issue is only present in renesas-clk, I will fold the fix into the original commit. Gr{oetje,eeting}s, Geert
On Mon, Aug 19, 2024 at 4:11 PM Geert Uytterhoeven <geert@linux-m68k.org> wrote: > > Hi Prabhakar, > > On Mon, Aug 5, 2024 at 11:58 AM Prabhakar <prabhakar.csengg@gmail.com> wrote: > > From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> > > > > Address randconfig build issue where the linker reports an undefined > > reference to `r9a09g057_cpg_info`. The error occurs when > > CONFIG_CLK_R9A09G057 is not defined, leading to the inclusion of the > > device match entry without the corresponding data. By adding a > > preprocessor condition to the device match table, the entry for > > r9a09g057 is included only when CONFIG_CLK_R9A09G057 is defined, thus > > resolving the linker error. > > > > Error message: > > /usr/bin/ld: warning: .tmp_vmlinux1 has a LOAD segment with RWX permissions > > >> /usr/bin/ld: drivers/clk/renesas/rzv2h-cpg.o:(.rodata+0xc0): undefined reference to `r9a09g057_cpg_info' > > clang-14: error: linker command failed with exit code 1 (use -v to see invocation) > > > > Reported-by: kernel test robot <lkp@intel.com> > > Closes: https://lore.kernel.org/oe-kbuild-all/202408040932.SqrqyXGU-lkp@intel.com/ > > Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> > > Fixes: 42b54d52ecb7a819 ("clk: renesas: Add RZ/V2H(P) CPG driver") > Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> > > As the issue is only present in renesas-clk, I will fold the fix into the > original commit. > Thanks Geert. Cheers, Prabhakar
diff --git a/drivers/clk/renesas/rzv2h-cpg.c b/drivers/clk/renesas/rzv2h-cpg.c index a12720b4b498..504ee263919e 100644 --- a/drivers/clk/renesas/rzv2h-cpg.c +++ b/drivers/clk/renesas/rzv2h-cpg.c @@ -829,10 +829,12 @@ static int __init rzv2h_cpg_probe(struct platform_device *pdev) } static const struct of_device_id rzv2h_cpg_match[] = { +#ifdef CONFIG_CLK_R9A09G057 { .compatible = "renesas,r9a09g057-cpg", .data = &r9a09g057_cpg_info, }, +#endif { /* sentinel */ } };