Changeset ed13346 in rtems
- Timestamp:
- 09/21/01 14:00:06 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2543311
- Parents:
- 8f6e5f0d
- Location:
- c/src/libchip
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libchip/ChangeLog
r8f6e5f0d red13346 1 2001-09-14 Joel Sherrill <joel@OARcorp.com> 2 3 * network/Makefile.am: Fixed typo on file name. 4 * network/i82586.c: Commented out line 318 which is referencing 5 a member of a structure that is not currently there. This 6 needs to be worked out with Chris Johns <ccj@acm.org>. 7 Switched C++ style comments to C style. 8 1 9 2001-09-19 Chris Johns <ccj@acm.org> 2 10 -
c/src/libchip/network/Makefile.am
r8f6e5f0d red13346 11 11 12 12 # add cs8900.c to work with it and make it compile 13 C_FILES = dec21140.c i82586. hsonic.c13 C_FILES = dec21140.c i82586.c sonic.c 14 14 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) 15 15 -
c/src/libchip/network/i82586.c
r8f6e5f0d red13346 317 317 return 0; 318 318 319 sc = config->drv_ctrl; 319 sc = 0; /* config->drv_ctrl; */ 320 #warning "undo this hack" 320 321 ifp = &sc->arpcom.ac_if; 321 322 … … 1049 1050 sc->trace_flow_in / 2, status, sc->xctail); 1050 1051 printf("iestatus = 0x%x\n", scbstatus); 1051 / / sc->sc_debug = IED_ALL;1052 /* sc->sc_debug = IED_ALL; */ 1052 1053 } 1053 1054 … … 1965 1966 { 1966 1967 struct ie_softc *sc = ifp->if_softc; 1967 / / struct ifreq *ifr = (struct ifreq *)data;1968 /* struct ifreq *ifr = (struct ifreq *)data; */ 1968 1969 int s; 1969 1970 int error = 0;
Note: See TracChangeset
for help on using the changeset viewer.