diff options
| author | wdenk <wdenk> | 2002-11-11 21:14:20 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2002-11-11 21:14:20 +0000 | 
| commit | 1d0350ed0b1b0f63e3fb5db6b19397b84a2ea1c7 (patch) | |
| tree | c26edf461eb3d49625026f7ec5751f8fee2556d8 /include/lists.h | |
| parent | eb9401e3ebfa6a1550522be28895af461137f797 (diff) | |
| download | olio-uboot-2014.01-1d0350ed0b1b0f63e3fb5db6b19397b84a2ea1c7.tar.xz olio-uboot-2014.01-1d0350ed0b1b0f63e3fb5db6b19397b84a2ea1c7.zip | |
* Patch by Jim Sandoz, 07 Nov 2002:LABEL_2002_11_11_2211
  Increase number of network RX buffers (PKTBUFSRX in
  "include/net.h") for EEPRO100 based boards (especially SP8240)
  which showed "Receiver is not ready" errors when U-Boot was
  processing the receive buffers slower than the network controller
  was filling them.
* Get rid of obsolete include/mpc74xx.h
Diffstat (limited to 'include/lists.h')
| -rw-r--r-- | include/lists.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/lists.h b/include/lists.h index 3249fcaa4..b42a2fae1 100644 --- a/include/lists.h +++ b/include/lists.h @@ -39,7 +39,7 @@ void    *ListGetPtrToItem(list_t list, int itemPosition);  void    ListRemoveItem(list_t list, void *itemDestination, int itemPosition);  void    ListRemoveItems(list_t list, void *itemsDestination, int firstItemPosition, int numItemsToRemove); -#if 0 +#if 0	/* rarely ever used; kept here for reference just in case ... */  void    ListDisposePtrList(list_t list);  void    ListGetItem(list_t list, void *itemDestination, int itemPosition);  void    ListReplaceItem(list_t list, void *ptrToItem, int itemPosition); @@ -72,6 +72,6 @@ int     ListGetItemSize(list_t list);  int     GetIntListFromParmInfo(va_list parmInfo, int numIntegers, list_t *integerList);  int     ListInsertAfterItem(list_t list, void *ptrToItem, void *ptrToItemToInsertAfter, CompareFunction compareFunction);  int     ListInsertBeforeItem(list_t list, void *ptrToItem, void *ptrToItemToInsertBefore, CompareFunction compareFunction); -#endif 0 +#endif /* 0 */  #endif	/* _LISTS_H_ */ |