2003-01-28 Joel Sherrill <joel@OARcorp.com>

* include/DP8570A.h, include/bsp.h, start/start.c,
	startup/efi68k_tcp.c: Rename tcp_init() to bsp_tcp_init()
	to avoid conflict with TCP/IP stack internal routine.
This commit is contained in:
Joel Sherrill
2003-01-28 17:52:10 +00:00
parent ccad44f54c
commit 93ada84f78
5 changed files with 11 additions and 5 deletions

View File

@@ -1,3 +1,9 @@
2003-01-28 Joel Sherrill <joel@OARcorp.com>
* include/DP8570A.h, include/bsp.h, start/start.c,
startup/efi68k_tcp.c: Rename tcp_init() to bsp_tcp_init()
to avoid conflict with TCP/IP stack internal routine.
2003-01-20 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds*: Add FreeBSD sysctl() sections.

View File

@@ -270,6 +270,6 @@ extern struct clock_ram * const tcp_power_down;
extern struct clock_counters * const tcp_clock;
extern struct clock_ram * const tcp_save_ram;
void tcp_init(void);
void bsp_tcp_init(void);
#endif /* _DP8570A_H_ */

View File

@@ -156,7 +156,7 @@ void console_init(void);
void watch_dog_init(void);
void tcp_init(void);
void bsp_tcp_init(void);
void Spurious_Initialize(void);

View File

@@ -59,7 +59,7 @@ void boot_card();
Spurious_Initialize();
console_init();
watch_dog_init();
tcp_init();
bsp_tcp_init();
/*
* Execute main with arguments argv and environment env

View File

@@ -41,7 +41,7 @@ void tcp_delay(int count)
for (i=0;i<count/4;i++);
}
void tcp_init()
void bsp_tcp_init()
{
unsigned char low_bat, osc_fail, power_up;
unsigned char mon, dom, hrs, min, sec;
@@ -164,7 +164,7 @@ void tcp_init()
Vcc,.... *except* for battery switched on for the
first time before power up in which case the chip
will still be in single suppy mode till restarted (a
second call to tcp_init such as when the time is set
second call to bsp_tcp_init such as when the time is set
or a reboot.) The timer/clock itself should always
be completely functional regardless of the supply
mode. */