public inbox for linux-m68k@lists.linux-m68k.org
 help / color / mirror / Atom feed
From: Greg Ungerer <gerg@linux-m68k.org>
To: Antonio Quartulli <antonio@mandelbit.com>
Cc: geert@linux-m68k.org, linux-m68k@lists.linux-m68k.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] m68k: coldfire/device.c: only build FEC when HW macros are defined
Date: Mon, 4 Nov 2024 23:39:08 +1000	[thread overview]
Message-ID: <c767306e-e248-4395-b4ec-2bdfec56ef49@linux-m68k.org> (raw)
In-Reply-To: <20241029214315.26710-1-antonio@mandelbit.com>

Hi Antonio,

On 30/10/24 07:43, Antonio Quartulli wrote:
> When CONFIG_FEC is set (due to COMPILE_TEST) along with
> CONFIG_M54xx, coldfire/device.c has compile errors due to
> missing MCFEC_* and MCF_IRQ_FEC_* symbols.
> 
> Make the whole FEC blocks dependent on having the HW macros
> defined, rather than on CONFIG_FEC itself.
> 
> This fix is very similar to commit e6e1e7b19fa1 ("m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined")
> 
> Fixes: b7ce7f0d0efc ("m68knommu: merge common ColdFire FEC platform setup code")
> To: Greg Ungerer <gerg@linux-m68k.org>
> To: Geert Uytterhoeven <geert@linux-m68k.org>
> Cc: linux-m68k@lists.linux-m68k.org
> Cc: linux-kernel@vger.kernel.org
> Signed-off-by: Antonio Quartulli <antonio@mandelbit.com>

Thanks, looks good. Applied to the m68knommu git tree, for-next branch.

Regards
Greg


> ---
>   arch/m68k/coldfire/device.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/m68k/coldfire/device.c b/arch/m68k/coldfire/device.c
> index 7dab46728aed..b6958ec2a220 100644
> --- a/arch/m68k/coldfire/device.c
> +++ b/arch/m68k/coldfire/device.c
> @@ -93,7 +93,7 @@ static struct platform_device mcf_uart = {
>   	.dev.platform_data	= mcf_uart_platform_data,
>   };
>   
> -#if IS_ENABLED(CONFIG_FEC)
> +#ifdef MCFFEC_BASE0
>   
>   #ifdef CONFIG_M5441x
>   #define FEC_NAME	"enet-fec"
> @@ -145,6 +145,7 @@ static struct platform_device mcf_fec0 = {
>   		.platform_data		= FEC_PDATA,
>   	}
>   };
> +#endif /* MCFFEC_BASE0 */
>   
>   #ifdef MCFFEC_BASE1
>   static struct resource mcf_fec1_resources[] = {
> @@ -182,7 +183,6 @@ static struct platform_device mcf_fec1 = {
>   	}
>   };
>   #endif /* MCFFEC_BASE1 */
> -#endif /* CONFIG_FEC */
>   
>   #if IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI)
>   /*
> @@ -624,12 +624,12 @@ static struct platform_device mcf_flexcan0 = {
>   
>   static struct platform_device *mcf_devices[] __initdata = {
>   	&mcf_uart,
> -#if IS_ENABLED(CONFIG_FEC)
> +#ifdef MCFFEC_BASE0
>   	&mcf_fec0,
> +#endif
>   #ifdef MCFFEC_BASE1
>   	&mcf_fec1,
>   #endif
> -#endif
>   #if IS_ENABLED(CONFIG_SPI_COLDFIRE_QSPI)
>   	&mcf_qspi,
>   #endif

      reply	other threads:[~2024-11-04 13:39 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-29 21:43 [PATCH] m68k: coldfire/device.c: only build FEC when HW macros are defined Antonio Quartulli
2024-11-04 13:39 ` Greg Ungerer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c767306e-e248-4395-b4ec-2bdfec56ef49@linux-m68k.org \
    --to=gerg@linux-m68k.org \
    --cc=antonio@mandelbit.com \
    --cc=geert@linux-m68k.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-m68k@lists.linux-m68k.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox