[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200818130003.GA20340@kozik-lap>
Date: Tue, 18 Aug 2020 15:00:03 +0200
From: Krzysztof Kozlowski <krzk@...nel.org>
To: YueHaibing <yuehaibing@...wei.com>
Cc: rogerq@...com, tony@...mide.com, bbrezillon@...nel.org,
ladis@...ux-mips.org, peter.ujfalusi@...com,
linux-omap@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] memory: omap-gpmc: Fix build error without CONFIG_OF
On Tue, Aug 18, 2020 at 08:53:38PM +0800, YueHaibing wrote:
> If CONFIG_OF is n, gcc fails:
>
> drivers/memory/omap-gpmc.o: In function `gpmc_omap_onenand_set_timings':
> omap-gpmc.c:(.text+0x2a88): undefined reference to `gpmc_read_settings_dt'
>
> Add helper function to fix this.
>
> Fixes: a758f50f10cf ("mtd: onenand: omap2: Configure driver from DT")
> Signed-off-by: YueHaibing <yuehaibing@...wei.com>
> ---
> drivers/memory/omap-gpmc.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/drivers/memory/omap-gpmc.c b/drivers/memory/omap-gpmc.c
> index ce0e7e2d7cff..332bb4580817 100644
> --- a/drivers/memory/omap-gpmc.c
> +++ b/drivers/memory/omap-gpmc.c
> @@ -1176,6 +1176,7 @@ struct gpmc_nand_ops *gpmc_omap_get_nand_ops(struct gpmc_nand_regs *reg, int cs)
> }
> EXPORT_SYMBOL_GPL(gpmc_omap_get_nand_ops);
>
> +#ifdef CONFIG_OF
Hi,
Instead add empty stub for gpmc_read_settings_dt() in existing #ifdef
section - around line 2314. Less ifdefs and actually seems to me
appropriate place to group !OF stubs.
Best regards,
Krzysztof
Powered by blists - more mailing lists