[PATCH v8 13/25] m68k: Dispatch nvram_ops calls to Atari or Mac functions
Arnd Bergmann
arnd at arndb.de
Mon Dec 31 23:19:03 AEDT 2018
On Sun, Dec 30, 2018 at 11:12 PM Finn Thain <fthain at telegraphics.com.au> wrote:
> On Sun, 30 Dec 2018, LEROY Christophe wrote:
> But I'm over-simplifying. Arnd's alternative actually goes like this,
>
> #if defined(CONFIG_MAC) && !defined(CONFIG_ATARI)
> const struct nvram_ops arch_nvram_ops = {
> /* ... */
> }
> #elif !defined(CONFIG_MAC) && defined(CONFIG_ATARI)
> const struct nvram_ops arch_nvram_ops = {
> /* ... */
> }
> #elif defined(CONFIG_MAC) && defined(CONFIG_ATARI)
> const struct nvram_ops arch_nvram_ops = {
> /* ... */
> }
> #endif
>
> So, you're right, this isn't "duplication", it's "triplication".
Ok, I failed to realized that MAC and ATARI are not mutually exclusive.
I agree that your original version is best then.
Arnd
More information about the Linuxppc-dev
mailing list