diff options
author | Heiko Schocher <hs@denx.de> | 2009-02-12 08:08:54 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-02-12 08:35:42 +0100 |
commit | c2d9befa0b4695b89476fb5d259742c09afe243f (patch) | |
tree | c0b9b82a3857bd85b6d6f1c016baf677c8604265 | |
parent | f15c6515fc23f83c51f3de272ca23d86b80e81b1 (diff) | |
download | u-boot-imx-c2d9befa0b4695b89476fb5d259742c09afe243f.zip u-boot-imx-c2d9befa0b4695b89476fb5d259742c09afe243f.tar.gz u-boot-imx-c2d9befa0b4695b89476fb5d259742c09afe243f.tar.bz2 |
82xx, mgcoge: fix compile error
With actual u-boot compiling the mgcoge port fails, because
since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
necessary to define CONFIG_NET_MULTI.
Seems to me the mgcoge port is the only actual existing 8260
port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
to be fixed.
Signed-off-by: Heiko Schocher <hs@denx.de>
-rw-r--r-- | include/configs/mgcoge.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/mgcoge.h b/include/configs/mgcoge.h index 233bee0..b5d12c6 100644 --- a/include/configs/mgcoge.h +++ b/include/configs/mgcoge.h @@ -64,6 +64,7 @@ #define CONFIG_ETHER_ON_SCC /* Ethernet is on SCC */ #undef CONFIG_ETHER_ON_FCC /* Ethernet is not on FCC */ #undef CONFIG_ETHER_NONE /* No external Ethernet */ +#define CONFIG_NET_MULTI 1 #define CONFIG_ETHER_INDEX 4 #define CONFIG_SYS_SCC_TOUT_LOOP 10000000 |