Geert,
+obj-$(CONFIG_ATARI_ETHERNEC) += ne.o 8390p.o
This duplicates the line for CONFIG_NE2000. You can remove it, if you
make CONFIG_NE2000 selectable on Atari (see below).
True - it would be cleaner if everyone understood the EtherNEC really
is a NE2000.
+config ATARI_ETHERNEC
+ tristate "Atari EtherNEC Ethernet support"
I would make this bool, and move this section to arch/m68k/Kconfig.devices.
Then CONFIG_ATARI_ETHERNEC can control the creation of the platform
devices.
After that, you still need a way to make CONFIG_NE2000 selectable. E.g.
in drivers/net/ethernet/8390/Kconfig:
config NE2000
tristate "NE2000/NE1000 support"
- depends on (ISA || (Q40 && m) || M32R || MACH_TX49XX)
+ depends on (ISA || (Q40 && m) || M32R || MACH_TX49XX || ATARI_ETHERNEC)
Can't we force NE2000 to be enabled whenever ATARI_ETHERNEC is enabled
by default? We would not want one without the other usually.
Cheers,
Michael
--
To unsubscribe from this list: send the line "unsubscribe linux-m68k" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html