diff options
| author | wdenk <wdenk> | 2004-02-24 02:00:03 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2004-02-24 02:00:03 +0000 | 
| commit | cbd8a35c6dbaaca35494cbec319960887ad02dcf (patch) | |
| tree | f3a5f6817a203a6e3a0a0ab7fb9df5b3697c07e3 /include/net.h | |
| parent | 074cff0d2863bab21b065cf283eccd728f4fecaa (diff) | |
| download | olio-uboot-2014.01-cbd8a35c6dbaaca35494cbec319960887ad02dcf.tar.xz olio-uboot-2014.01-cbd8a35c6dbaaca35494cbec319960887ad02dcf.zip | |
* Patch by Masami Komiy, 22 Feb 2004:
  Add support for NFS for file download
* Minor code cleanup
Diffstat (limited to 'include/net.h')
| -rw-r--r-- | include/net.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/include/net.h b/include/net.h index 39debc673..1b2b347f8 100644 --- a/include/net.h +++ b/include/net.h @@ -21,13 +21,13 @@  # endif  #endif	/* CONFIG_8xx */ -#if defined(CONFIG_MPC5XXX) +#if defined(CONFIG_MPC5xxx)  # if !defined(CONFIG_NET_MULTI) -#  if defined(CONFIG_MPC5XXX_FEC) +#  if defined(CONFIG_MPC5xxx_FEC)  #   define CONFIG_NET_MULTI  #  endif  # endif -#endif	/* CONFIG_MPC5XXX */ +#endif	/* CONFIG_MPC5xxx */  #if !defined(CONFIG_NET_MULTI) && (defined(CONFIG_8260) || defined(CONFIG_MPC8560))  #include <config.h> @@ -306,7 +306,7 @@ extern int		NetState;		/* Network loop state		*/  extern int		NetRestartWrap;		/* Tried all network devices	*/  #endif -typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS } proto_t; +typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS } proto_t;  /* from net/net.c */  extern char	BootFile[128];			/* Boot File name		*/ |