[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20211114165913.55a90249@jic23-huawei>
Date: Sun, 14 Nov 2021 16:59:13 +0000
From: Jonathan Cameron <jic23@...nel.org>
To: Randy Dunlap <rdunlap@...radead.org>
Cc: linux-kernel@...r.kernel.org, kernel test robot <lkp@...el.com>,
Artur Rojek <contact@...ur-rojek.eu>,
Paul Cercueil <paul@...pouillou.net>,
linux-mips@...r.kernel.org, Lars-Peter Clausen <lars@...afoo.de>,
linux-iio@...r.kernel.org, Florian Fainelli <f.fainelli@...il.com>,
Andy Shevchenko <andy.shevchenko@...il.com>,
Russell King <linux@...linux.org.uk>,
bcm-kernel-feedback-list@...adcom.com,
Jonas Gorski <jonas.gorski@...il.com>
Subject: Re: [PATCH v3] mips: bcm63xx: add support for clk_get_parent()
On Sun, 14 Nov 2021 08:34:44 -0800
Randy Dunlap <rdunlap@...radead.org> wrote:
> BCM63XX selects HAVE_LEGACY_CLK but does not provide/support
> clk_get_parent(), so add a simple implementation of that
> function so that callers of it will build without errors.
>
> Fixes these build errors:
>
> mips-linux-ld: drivers/iio/adc/ingenic-adc.o: in function `jz4770_adc_init_clk_div':
> ingenic-adc.c:(.text+0xe4): undefined reference to `clk_get_parent'
> mips-linux-ld: drivers/iio/adc/ingenic-adc.o: in function `jz4725b_adc_init_clk_div':
> ingenic-adc.c:(.text+0x1b8): undefined reference to `clk_get_parent'
>
> Signed-off-by: Randy Dunlap <rdunlap@...radead.org>
> Reported-by: kernel test robot <lkp@...el.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@...wei.com>
I wonder a bit if it makes sense to fix only the ones we hit given there
look to be other missing definitions in this subarch.
clk_has_parent() for example appears to also be missing.
Do we have the same issue with mips/lantiq?
Jonathan
> Cc: Artur Rojek <contact@...ur-rojek.eu>
> Cc: Paul Cercueil <paul@...pouillou.net>
> Cc: linux-mips@...r.kernel.org
> Cc: Jonathan Cameron <jic23@...nel.org>
> Cc: Lars-Peter Clausen <lars@...afoo.de>
> Cc: linux-iio@...r.kernel.org
> Cc: Florian Fainelli <f.fainelli@...il.com>
> Cc: Andy Shevchenko <andy.shevchenko@...il.com>
> Cc: Russell King <linux@...linux.org.uk>
> Cc: bcm-kernel-feedback-list@...adcom.com
> Cc: Jonas Gorski <jonas.gorski@...il.com>
> ---
> v1 and v2 were:
> [PATCH] iio/adc: ingenic: fix (MIPS) ingenic-adc build errors
> Fixes: 1a78daea107d ("IIO: add Ingenic JZ47xx ADC driver.")
>
> arch/mips/bcm63xx/clk.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> --- linux-next-20211112.orig/arch/mips/bcm63xx/clk.c
> +++ linux-next-20211112/arch/mips/bcm63xx/clk.c
> @@ -381,6 +381,13 @@ void clk_disable(struct clk *clk)
>
> EXPORT_SYMBOL(clk_disable);
>
> +struct clk *clk_get_parent(struct clk *clk)
> +{
> + return NULL;
> +}
> +
> +EXPORT_SYMBOL(clk_get_parent);
> +
> unsigned long clk_get_rate(struct clk *clk)
> {
> if (!clk)
Powered by blists - more mailing lists