diff options
author | wdenk <wdenk> | 2003-06-15 22:40:42 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-15 22:40:42 +0000 |
commit | 71f9511803de65a3b98d2f592d418da1d1539f13 (patch) | |
tree | 4be38a22fc4f588a80aa8cc350ecd5617a211389 /include/net.h | |
parent | 487778b781257831aa9b9140dd3c7ad4176e8314 (diff) |
* Fix CONFIG_NET_MULTI support in include/net.hLABEL_2003_06_16_0055
* Patches by Kyle Harris, 13 Mar 2003:
- Add FAT partition support
- Add command support for FAT
- Add command support for MMC
----
- Add Intel PXA support for video
- Add Intel PXA support for MMC
----
- Enable MMC and FAT for lubbock board
- Other misc changes for lubbock board
Diffstat (limited to 'include/net.h')
-rw-r--r-- | include/net.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/include/net.h b/include/net.h index 689a90f6eeb..2a1d3365e46 100644 --- a/include/net.h +++ b/include/net.h @@ -12,12 +12,14 @@ #ifndef __NET_H__ #define __NET_H__ -#if !defined(CONFIG_NET_MULTI) && defined(CONFIG_8xx) +#if defined(CONFIG_8xx) #include <commproc.h> -#if defined(FEC_ENET) || defined(SCC_ENET) -#define CONFIG_NET_MULTI -#endif -#endif +# if !defined(CONFIG_NET_MULTI) +# if defined(FEC_ENET) || defined(SCC_ENET) +# define CONFIG_NET_MULTI +# endif +# endif +#endif /* CONFIG_8xx */ #if !defined(CONFIG_NET_MULTI) && defined(CONFIG_8260) #include <config.h> |