Changeset 93ada84 in rtems
- Timestamp:
- 01/28/03 17:52:10 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 99159ec6
- Parents:
- ccad44f5
- Location:
- c/src/lib/libbsp/m68k/efi68k
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/m68k/efi68k/ChangeLog
rccad44f5 r93ada84 1 2003-01-28 Joel Sherrill <joel@OARcorp.com> 2 3 * include/DP8570A.h, include/bsp.h, start/start.c, 4 startup/efi68k_tcp.c: Rename tcp_init() to bsp_tcp_init() 5 to avoid conflict with TCP/IP stack internal routine. 6 1 7 2003-01-20 Joel Sherrill <joel@OARcorp.com> 2 8 -
c/src/lib/libbsp/m68k/efi68k/include/DP8570A.h
rccad44f5 r93ada84 271 271 extern struct clock_ram * const tcp_save_ram; 272 272 273 void tcp_init(void);273 void bsp_tcp_init(void); 274 274 275 275 #endif /* _DP8570A_H_ */ -
c/src/lib/libbsp/m68k/efi68k/include/bsp.h
rccad44f5 r93ada84 157 157 void watch_dog_init(void); 158 158 159 void tcp_init(void);159 void bsp_tcp_init(void); 160 160 161 161 void Spurious_Initialize(void); -
c/src/lib/libbsp/m68k/efi68k/start/start.c
rccad44f5 r93ada84 60 60 console_init(); 61 61 watch_dog_init(); 62 tcp_init();62 bsp_tcp_init(); 63 63 64 64 /* -
c/src/lib/libbsp/m68k/efi68k/startup/efi68k_tcp.c
rccad44f5 r93ada84 42 42 } 43 43 44 void tcp_init()44 void bsp_tcp_init() 45 45 { 46 46 unsigned char low_bat, osc_fail, power_up; … … 165 165 first time before power up in which case the chip 166 166 will still be in single suppy mode till restarted (a 167 second call to tcp_init such as when the time is set167 second call to bsp_tcp_init such as when the time is set 168 168 or a reboot.) The timer/clock itself should always 169 169 be completely functional regardless of the supply
Note: See TracChangeset
for help on using the changeset viewer.