From: stroese <stroese>
Date: Thu, 5 Jun 2003 15:38:29 +0000 (+0000)
Subject: - CFG_ETH_RX_BUFFER added.
X-Git-Tag: v2025.01-rc5-pxa1908~23932
X-Git-Url: http://git.dujemihanovic.xyz/img/static/%7B%7B%20%24.Site.BaseURL%20%7D%7Dposts/html/index.html?a=commitdiff_plain;h=c602883592c1966bab5e88f12567bafb4a677acd;p=u-boot.git

- CFG_ETH_RX_BUFFER added.
---

diff --git a/include/net.h b/include/net.h
index b4106fe5eb..e4f7cbdd22 100644
--- a/include/net.h
+++ b/include/net.h
@@ -51,10 +51,10 @@
  *
  */
 
-#ifndef	CONFIG_EEPRO100
-#define PKTBUFSRX	4
+#ifdef CFG_RX_ETH_BUFFER
+# define PKTBUFSRX	CFG_RX_ETH_BUFFER
 #else
-#define PKTBUFSRX	8
+# define PKTBUFSRX	4
 #endif
 
 #define PKTALIGN	32
@@ -75,8 +75,6 @@ typedef void	rxhand_f(uchar *, unsigned, unsigned, unsigned);
  */
 typedef void	thand_f(void);
 
-#ifdef CONFIG_NET_MULTI
-
 #define NAMESIZE 16
 
 enum eth_state_t {
@@ -105,7 +103,6 @@ extern int eth_register(struct eth_device* dev);/* Register network device	*/
 extern void eth_try_another(int first_restart);	/* Change the device		*/
 extern struct eth_device *eth_get_dev(void);	/* get the current device MAC	*/
 extern void eth_set_enetaddr(int num, char* a);	/* Set new MAC address		*/
-#endif
 
 extern int eth_init(bd_t *bis);			/* Initialize the device	*/
 extern int eth_send(volatile void *packet, int length);	   /* Send a packet	*/