From: Jon Loeliger <jdl@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [PATCH v2] Add mechanisms for CPU and board-specific Ethernet initialization
Date: Tue, 10 Jun 2008 10:37:44 -0500 [thread overview]
Message-ID: <1213112264.16606.7.camel@ld0161-tx32> (raw)
In-Reply-To: <1213106598-14584-1-git-send-email-biggerbadderben@gmail.com>
On Tue, 2008-06-10 at 07:03 -0700, Ben Warren wrote:
> +#if defined(CONFIG_TSEC1)
> + tsec_initialize(bis, 0, CONFIG_TSEC1_NAME);
> +#endif
> +#if defined(CONFIG_TSEC2)
> + tsec_initialize(bis, 1, CONFIG_TSEC2_NAME);
> +#endif
> +#if defined(CONFIG_MPC85XX_FEC)
> + tsec_initialize(bis, 2, CONFIG_MPC85XX_FEC_NAME);
> +#else
> +#if defined(CONFIG_TSEC3)
> + tsec_initialize(bis, 2, CONFIG_TSEC3_NAME);
> +#endif
> +#if defined(CONFIG_TSEC4)
> + tsec_initialize(bis, 3, CONFIG_TSEC4_NAME);
> +#endif
> +#endif
> + return 0;
> +}
So, why not make a new function in tsec.c called something
like tsec_initialize_all(bis) with essentially the above
#ifdef-series and make all of the individual board functions
just be like:
+int board_eth_init(bd_t *bis)
+{
+ tsec_initialize_all(bis);
+ return 0;
+}
Just a notion. Haven't actually thought about it...
jdl
next prev parent reply other threads:[~2008-06-10 15:37 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-10 14:03 [U-Boot-Users] [PATCH v2] Add mechanisms for CPU and board-specific Ethernet initialization Ben Warren
2008-06-10 15:37 ` Jon Loeliger [this message]
2008-06-10 16:11 ` Ben Warren
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=1213112264.16606.7.camel@ld0161-tx32 \
--to=jdl@freescale.com \
--cc=u-boot@lists.denx.de \
/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